忘了写到哪了

This commit is contained in:
quantulr
2022-08-30 10:36:30 +08:00
parent 1d2f37bfe1
commit 9e00dce03c
44 changed files with 5136 additions and 304 deletions

View File

@ -0,0 +1,26 @@
<template>
<div class="index">
<WebsiteHeader></WebsiteHeader>
<div class="content">
<router-view />
</div>
<el-backtop />
</div>
</template>
<script setup name="WebsiteLayout">
import WebsiteHeader from "@/components/WebsiteHeader";
</script>
<style lang="scss" scoped>
.index {
position: relative;
height: 100%;
width: 100%;
.content {
width: 100%;
padding-top: 80px;
height: 100%;
}
}
</style>