22 lines
501 B
Vue
22 lines
501 B
Vue
![]() |
<script lang="ts" setup>
|
||
|
import { useVbenDrawer } from '@vben/common-ui';
|
||
|
|
||
|
import { message } from 'ant-design-vue';
|
||
|
|
||
|
const [Drawer, drawerApi] = useVbenDrawer({
|
||
|
onCancel() {
|
||
|
drawerApi.close();
|
||
|
},
|
||
|
onConfirm() {
|
||
|
message.info('onConfirm');
|
||
|
// drawerApi.close();
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
<template>
|
||
|
<Drawer append-to-main title="基础抽屉示例" title-tooltip="标题提示内容">
|
||
|
<template #extra> extra </template>
|
||
|
本抽屉指定在内容区域打开
|
||
|
</Drawer>
|
||
|
</template>
|