初始代码

This commit is contained in:
wangmingwei
2026-04-21 17:19:25 +08:00
parent ac9bea0b65
commit fb2bc3165b
1320 changed files with 17009 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<template>
<div class="zero-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>