14 lines
228 B
Vue
14 lines
228 B
Vue
<template>
|
|
<router-view />
|
|
<FooterView></FooterView>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import HomeView from '@/views/HomeView.vue'
|
|
import FooterView from './component/FooterView.vue';
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|