23 lines
523 B
Vue
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>
|