naive-ui/demo/documentation/components/switch/zhCN/basic.demo.md
2020-10-22 13:10:54 +08:00

232 B

基础用法

<n-space>
  <n-switch
    v-model:value="active"
  />
  <n-switch
    v-model:value="active"
    disabled
  />
</n-space>
export default {
  data () {
    return {
      active: false
    }
  }
}