Files
hldrCenter/web/src/App.vue

14 lines
228 B
Vue
Raw Normal View History

2025-10-04 17:42:53 +08:00
<template>
<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>