naive-ui/demo/documentation/components/switch/zhCN/basic.demo.md

19 lines
185 B
Markdown
Raw Normal View History

2020-02-04 17:12:12 +08:00
# 基础用法
```html
<n-switch
v-model="active"
/>
<n-switch
v-model="active"
disabled
/>
```
```js
export default {
data () {
return {
active: false
}
}
}
```