naive-ui/demo/documentation/components/input/enUS/password.md

19 lines
209 B
Markdown
Raw Normal View History

2019-10-10 14:30:36 +08:00
# Password
```html
<n-input
v-model="value"
type="password"
icon="md-key"
placeholder="Password"
:maxlength="8"
/>
```
```js
export default {
data() {
return {
value: null
}
}
}
```