2026-05-14 09:53:22 +08:00
|
|
|
<template>
|
2026-05-14 13:08:29 +08:00
|
|
|
<Header />
|
2026-05-14 13:01:52 +08:00
|
|
|
<RouterView />
|
2026-05-14 13:08:29 +08:00
|
|
|
<Footer />
|
2026-05-14 13:01:52 +08:00
|
|
|
<BackTop />
|
2026-05-14 09:53:22 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2026-05-14 13:08:29 +08:00
|
|
|
import { RouterView } from 'vue-router'
|
|
|
|
|
import Header from './components/header.vue'
|
|
|
|
|
import Footer from './components/footer.vue'
|
|
|
|
|
import BackTop from "./components/back-top.vue";
|
2026-05-14 09:53:22 +08:00
|
|
|
</script>
|
2026-05-14 13:08:29 +08:00
|
|
|
<style scoped lang="less">
|
|
|
|
|
// .main {
|
|
|
|
|
// height: 100vh;
|
|
|
|
|
// width: 100vw;
|
|
|
|
|
// overflow-y: auto;
|
|
|
|
|
// overflow-x: hidden;
|
|
|
|
|
// position: relative;
|
|
|
|
|
// > .content{
|
|
|
|
|
// height: auto;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
</style>
|