naive-ui/demo/documentation/components/input/enUS/password.md
2019-10-10 14:30:36 +08:00

209 B

Password

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