mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
22 lines
487 B
Plaintext
22 lines
487 B
Plaintext
<template>
|
|
<div class="jnpf-content-wrapper bg-white">
|
|
<FormPopup @register="registerFormPopup" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue';
|
|
import { usePopup } from '@/components/Popup';
|
|
import FormPopup from './FormPopup.vue';
|
|
|
|
const [registerFormPopup, { openPopup: openFormPopup }] = usePopup();
|
|
|
|
function init() {
|
|
openFormPopup(true, {});
|
|
}
|
|
|
|
onMounted(() => {
|
|
init();
|
|
});
|
|
</script>
|