naive-ui/demo/documentation/components/drawer/zhCN/basic.md
2020-02-05 13:46:47 +08:00

255 B

基础用法

<n-button @click="active = !active">
  active
</n-button>
<n-drawer v-model="active" :width="502">
  <n-h1>Hear the Wind Sing</n-h1>
</n-drawer>
export default {
  data () {
    return {
      active: false
    }
  }
}