初版提交
This commit is contained in:
17
src/App.vue
Normal file
17
src/App.vue
Normal file
@ -0,0 +1,17 @@
|
||||
<script setup>
|
||||
import Header from '@/components/Header.vue'
|
||||
import Footer from '@/components/Footer.vue'
|
||||
import GoTop from '@/components/GoTop.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Header></Header>
|
||||
<!-- 路由出口 -->
|
||||
<!-- 路由匹配到的组件将渲染在这里 -->
|
||||
<router-view></router-view>
|
||||
<Footer></Footer>
|
||||
<GoTop></GoTop>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
|
||||
Reference in New Issue
Block a user