11 lines
237 B
Vue
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>
|