You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
614 B
32 lines
614 B
7 months ago
|
<template>
|
||
|
<Tabbar />
|
||
|
<div class="main-container">
|
||
|
<Main />
|
||
|
</div>
|
||
|
<Footer />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
// 导入顶部导航栏
|
||
|
import Tabbar from './tabbar/index.vue'
|
||
|
// 导入二级路由容器
|
||
|
import Main from './main/index.vue'
|
||
|
// 导入底部导航栏
|
||
|
import Footer from './footer/index.vue'
|
||
|
import {} from 'vue'
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.main-container {
|
||
|
width: 100%;
|
||
|
min-height: 100vh;
|
||
|
background-color: #eef1fb;
|
||
|
padding-top: 140px;
|
||
|
// background-color: skyblue;
|
||
|
// .container {
|
||
|
// width: $base-container-width;
|
||
|
// margin: 0 auto;
|
||
|
// }
|
||
|
}
|
||
|
</style>
|