mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
18 lines
248 B
Markdown
18 lines
248 B
Markdown
# Basic
|
|
```html
|
|
<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>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
active: false
|
|
}
|
|
}
|
|
}
|
|
``` |