1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| <script lang="ts" setup>
| import { useVbenDrawer } from '@vben/common-ui';
|
| import { Button, message } from 'ant-design-vue';
|
| const [Drawer, drawerApi] = useVbenDrawer({
| onCancel() {
| drawerApi.close();
| },
| onClosed() {
| drawerApi.setState({ overlayBlur: 0, placement: 'right' });
| },
| onConfirm() {
| message.info('onConfirm');
| // drawerApi.close();
| },
| });
|
| function lockDrawer() {
| drawerApi.lock();
| setTimeout(() => {
| drawerApi.unlock();
| }, 3000);
| }
| </script>
| <template>
| <Drawer title="基础抽屉示例" title-tooltip="标题提示内容">
| <template #extra> extra </template>
| base demo
| <Button type="primary" @click="lockDrawer">锁定抽屉状态</Button>
| <!-- <template #prepend-footer> slot </template> -->
| <!-- <template #append-footer> prepend slot </template> -->
| </Drawer>
| </template>
|
|