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

216 B

Password

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