21 lines
429 B
Vue
21 lines
429 B
Vue
![]() |
<script lang="ts" setup>
|
||
|
import { useVbenModal } from '@vben/common-ui';
|
||
|
|
||
|
import { message } from 'ant-design-vue';
|
||
|
|
||
|
const [Modal, modalApi] = useVbenModal({
|
||
|
onCancel() {
|
||
|
modalApi.close();
|
||
|
},
|
||
|
onConfirm() {
|
||
|
message.info('onConfirm');
|
||
|
// modalApi.close();
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
<template>
|
||
|
<Modal class="w-[600px]" title="基础弹窗示例" title-tooltip="标题提示内容">
|
||
|
base demo
|
||
|
</Modal>
|
||
|
</template>
|