mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-22 22:16:18 +08:00

* feat: add modal component * feat: add drawer component * feat: apply new modal and drawer components to the layout * chore: typo * feat: add some unit tests
30 lines
615 B
Vue
30 lines
615 B
Vue
<script lang="ts" setup>
|
||
import { ref } from 'vue';
|
||
|
||
import { useVbenDrawer } from '@vben/common-ui';
|
||
|
||
import { message } from 'ant-design-vue';
|
||
|
||
const data = ref();
|
||
|
||
const [Drawer, drawerApi] = useVbenDrawer({
|
||
onCancel() {
|
||
drawerApi.close();
|
||
},
|
||
onConfirm() {
|
||
message.info('onConfirm');
|
||
// drawerApi.close();
|
||
},
|
||
onOpenChange(isOpen: boolean) {
|
||
if (isOpen) {
|
||
data.value = drawerApi.getData<Record<string, any>>();
|
||
}
|
||
},
|
||
});
|
||
</script>
|
||
<template>
|
||
<Drawer title="数据共享示例">
|
||
<div class="flex-col-center">外部传递数据: {{ data }}</div>
|
||
</Drawer>
|
||
</template>
|