forked from opentiny/tiny-vue
34 lines
579 B
Vue
34 lines
579 B
Vue
<template>
|
|
<div>
|
|
<tiny-button @click="fn" type="primary"> 抽屉组件 </tiny-button>
|
|
<tiny-drawer title="标题" :visible="visible" @update:visible="visible = $event">
|
|
<div>
|
|
<br />
|
|
<br />
|
|
<span>内容区域</span>
|
|
</div>
|
|
</tiny-drawer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Drawer, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDrawer: Drawer,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {
|
|
visible: false
|
|
}
|
|
},
|
|
methods: {
|
|
fn() {
|
|
this.visible = true
|
|
}
|
|
}
|
|
}
|
|
</script>
|