
* feat: add `unlock` for modalApi * fix: modal's close button style in locking * fix: fix modal's close button disabled on locking * feat: add `lock` and `unlock` for drawerApi
35 lines
748 B
Vue
35 lines
748 B
Vue
<script lang="ts" setup>
|
||
import { useVbenModal } from '@vben/common-ui';
|
||
|
||
import { Button, message } from 'ant-design-vue';
|
||
|
||
const [Modal, modalApi] = useVbenModal({
|
||
onCancel() {
|
||
modalApi.close();
|
||
},
|
||
onClosed() {
|
||
message.info('onClosed:关闭动画结束');
|
||
},
|
||
onConfirm() {
|
||
message.info('onConfirm');
|
||
// modalApi.close();
|
||
},
|
||
onOpened() {
|
||
message.info('onOpened:打开动画结束');
|
||
},
|
||
});
|
||
|
||
function lockModal() {
|
||
modalApi.lock();
|
||
setTimeout(() => {
|
||
modalApi.unlock();
|
||
}, 3000);
|
||
}
|
||
</script>
|
||
<template>
|
||
<Modal class="w-[600px]" title="基础弹窗示例" title-tooltip="标题提示内容">
|
||
base demo
|
||
<Button type="primary" @click="lockModal">锁定弹窗</Button>
|
||
</Modal>
|
||
</template>
|