mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
19 lines
209 B
Markdown
19 lines
209 B
Markdown
|
# Password
|
||
|
```html
|
||
|
<n-input
|
||
|
v-model="value"
|
||
|
type="password"
|
||
|
icon="md-key"
|
||
|
placeholder="Password"
|
||
|
:maxlength="8"
|
||
|
/>
|
||
|
```
|
||
|
```js
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
value: null
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
```
|