naive-ui/demo/documentation/components/input/zhCN/password.demo.md
2020-10-22 12:12:11 +08:00

212 B

密码

<n-input
  v-model:value="value"
  type="password"
  icon="md-key"
  placeholder="密码"
  :maxlength="8"
/>
export default {
  data () {
    return {
      value: null
    }
  }
}