naive-ui/demo/documentation/components/input/zhCN/disabled.demo.md
2020-11-07 00:07:02 +08:00

807 B

禁用

文本输入可以被禁用。

<n-space vertical>
  <n-input
    v-model:value="value"
    type="input"
    size="small"
    placeholder="噢!它被禁用了。"
    :disabled="!active"
    round
  />
  <n-input
    v-model:value="value"
    type="textarea"
    size="small"
    placeholder="噢!它被禁用了。"
    :disabled="!active"
    round
  />
  <n-input pair separator="to" v-model:value="value" clearable :disabled="!active">
    <template v-slot:affix>
      <n-icon><cash-icon /></n-icon>
    </template>
  </n-input>
  <n-switch v-model:value="active" />
</n-space>
import { CashOutline as CashIcon } from '@vicons/ionicons-v5'

export default {
  components: {
    CashIcon
  },
  data () {
    return {
      active: false,
      value: null
    }
  }
}