27 lines
538 B
Vue
27 lines
538 B
Vue
![]() |
<script lang="ts" setup>
|
|||
|
import { ref } from 'vue';
|
|||
|
|
|||
|
import { useVbenModal } from '@vben/common-ui';
|
|||
|
|
|||
|
const data = ref();
|
|||
|
|
|||
|
const [Modal, modalApi] = useVbenModal({
|
|||
|
onCancel() {
|
|||
|
modalApi.close();
|
|||
|
},
|
|||
|
onConfirm() {
|
|||
|
console.info('onConfirm');
|
|||
|
},
|
|||
|
onOpenChange(isOpen: boolean) {
|
|||
|
if (isOpen) {
|
|||
|
data.value = modalApi.getData<Record<string, any>>();
|
|||
|
}
|
|||
|
},
|
|||
|
});
|
|||
|
</script>
|
|||
|
<template>
|
|||
|
<Modal title="数据共享示例">
|
|||
|
<div class="flex-col-center">外部传递数据: {{ data }}</div>
|
|||
|
</Modal>
|
|||
|
</template>
|