kun-galgame-vue/src/views/Home/KUNGalgameMainPage.vue
2023-06-13 21:26:24 +08:00

23 lines
523 B
Vue

<script setup lang="ts">
import KUNGalgameTopBar from '@/components/KUNGalgameTopBar.vue'
import MainPageContent from './content/MainPageContent.vue'
import MainPageFooter from './footer/MainPageFooter.vue'
</script>
<template>
<!-- 可视部分的容器 -->
<div class="visual-wrapper">
<KUNGalgameTopBar :isMainPage="true" />
<MainPageContent />
<MainPageFooter />
</div>
</template>
<style lang="scss" scoped>
.visual-wrapper {
height: 1500px;
display: flex;
flex-direction: column;
}
</style>