naive-ui/demo/documentation/components/input/zhCN/password.md
2020-02-04 20:45:34 +08:00

205 B

密码

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