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

19 lines
216 B
Markdown
Raw Normal View History

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