tiny-vue/examples/sites/demos/pc/app/drawer/confirm-event.vue

40 lines
763 B
Vue

<template>
<div>
<tiny-button @click="openDrawer" type="primary"> 确认事件示例 </tiny-button>
<tiny-drawer
title="标题"
:show-footer="true"
:visible="visible"
@update:visible="visible = $event"
@confirm="confirm"
>
<div style="padding: 32px">内容区域</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: {
openDrawer() {
this.visible = true
},
confirm() {
Modal.message({ message: '确认事件', status: 'success' })
this.visible = false
}
}
}
</script>