2025-10-04 17:42:53 +08:00
|
|
|
<template>
|
2025-10-24 11:52:18 +08:00
|
|
|
<router-view />
|
2025-10-08 23:24:05 +08:00
|
|
|
<FooterView></FooterView>
|
2025-10-04 17:42:53 +08:00
|
|
|
</template>
|
|
|
|
|
|
2025-10-08 20:00:30 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import HomeView from '@/views/HomeView.vue'
|
2025-10-08 23:24:05 +08:00
|
|
|
import FooterView from './component/FooterView.vue';
|
2025-10-08 20:00:30 +08:00
|
|
|
</script>
|
2025-10-04 17:42:53 +08:00
|
|
|
|
2025-10-08 20:00:30 +08:00
|
|
|
<style scoped>
|
2025-10-04 17:42:53 +08:00
|
|
|
|
|
|
|
|
</style>
|