Files
Academic-Affairs-System/web/src/App.vue
T
2026-08-02 17:28:44 +08:00

11 lines
237 B
Vue

<script setup lang="ts">
import SiteFooter from './components/SiteFooter.vue'
import SmartLaunchScreen from './components/SmartLaunchScreen.vue'
</script>
<template>
<SmartLaunchScreen />
<RouterView />
<SiteFooter />
</template>