mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
19 lines
178 B
Markdown
19 lines
178 B
Markdown
# Basic
|
|
```html
|
|
<n-switch
|
|
v-model="active"
|
|
/>
|
|
<n-switch
|
|
v-model="active"
|
|
disabled
|
|
/>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
active: false
|
|
}
|
|
}
|
|
}
|
|
``` |