27 lines
447 B
Vue
27 lines
447 B
Vue
![]() |
<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>
|