naive-ui/demo/documentation/components/switch/zhCN/basic.demo.md
07akioni 487001d697 build: add changelog to site, refactor loader based on suffix
.demo.md for component demo
.demo-entry.md for demo entry
.md for common docs
2020-08-19 23:30:04 +08:00

185 B

基础用法

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