1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <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 title="基础抽屉示例" title-tooltip="标题提示内容">
| <template #extra> extra </template>
| base demo
|
| <!-- <template #prepend-footer> slot </template> -->
| <!-- <template #append-footer> prepend slot </template> -->
| </Drawer>
| </template>
|
|