mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
19 lines
185 B
Markdown
19 lines
185 B
Markdown
|
# 基础用法
|
||
|
```html
|
||
|
<n-switch
|
||
|
v-model="active"
|
||
|
/>
|
||
|
<n-switch
|
||
|
v-model="active"
|
||
|
disabled
|
||
|
/>
|
||
|
```
|
||
|
```js
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
active: false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
```
|