2025-06-30 09:38:03 +08:00

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>