尾部导航

This commit is contained in:
cxc
2022-11-17 17:29:47 +08:00
parent c2327f30cb
commit 7dc27a03ea
54 changed files with 956 additions and 433 deletions

View File

@ -2,7 +2,7 @@
<div class="index">
<WebsiteHeader></WebsiteHeader>
<div class="content">
<router-view />
<router-view :key="route.fullPath" />
</div>
<el-backtop />
</div>
@ -10,6 +10,8 @@
<script setup name="WebsiteLayout">
import WebsiteHeader from "@/components/WebsiteHeader";
import { useRoute } from "vue-router";
const route = useRoute();
</script>
<style lang="scss" scoped>