mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-12-26 13:34:16 +08:00
19 lines
358 B
Vue
19 lines
358 B
Vue
<script setup lang="ts">
|
|
import AppMain from './AppMain.vue'
|
|
import AppLoading from './components/common/AppLoading.vue'
|
|
|
|
// 使用 Suspense 处理异步组件加载
|
|
</script>
|
|
|
|
<template>
|
|
<Suspense>
|
|
<!-- 异步组件 -->
|
|
<AppMain />
|
|
|
|
<!-- 加载状态 -->
|
|
<template #fallback>
|
|
<AppLoading />
|
|
</template>
|
|
</Suspense>
|
|
</template>
|