
* 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
20 lines
421 B
Vue
20 lines
421 B
Vue
<script lang="ts" setup>
|
||
import { useVbenModal } from '@vben/common-ui';
|
||
|
||
import { message } from 'ant-design-vue';
|
||
|
||
const [Modal, modalApi] = useVbenModal({
|
||
draggable: true,
|
||
onCancel() {
|
||
modalApi.close();
|
||
},
|
||
onConfirm() {
|
||
message.info('onConfirm');
|
||
// modalApi.close();
|
||
},
|
||
});
|
||
</script>
|
||
<template>
|
||
<Modal title="可拖拽示例"> 鼠标移动到 header 上,可拖拽弹窗 </Modal>
|
||
</template>
|