forked from opentiny/tiny-vue
37 lines
726 B
Vue
37 lines
726 B
Vue
<template>
|
|
<div>
|
|
<tiny-button @click="fn" type="primary"> 关闭事件示例 </tiny-button>
|
|
<tiny-drawer title="标题" :show-footer="true" :visible="visible" @update:visible="visible = $event" @close="close">
|
|
<div style="height: 200px; text-align: center">
|
|
<br />
|
|
<br />
|
|
<span>内容区域</span>
|
|
</div>
|
|
</tiny-drawer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Drawer, Button, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDrawer: Drawer,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {
|
|
visible: false
|
|
}
|
|
},
|
|
methods: {
|
|
fn() {
|
|
this.visible = true
|
|
},
|
|
close() {
|
|
Modal.message('关闭事件')
|
|
}
|
|
}
|
|
}
|
|
</script>
|