kun-galgame-vue/src/views/Home/KUNGalgameMainPage.vue
2023-06-06 21:56:18 +08:00

30 lines
785 B
Vue

<script setup lang="ts">
import KUNGalgameTopBar from '@/components/KUNGalgameTopBar.vue'
import MainPageContent from './content/MainPageContent.vue'
import MainPageFooter from './footer/MainPageFooter.vue'
import { currBackground } from '@/hooks/useBackgroundPicture'
</script>
<template>
<!-- 可视部分的容器 -->
<div class="visual-wrapper" :style="{ backgroundImage: currBackground }">
<KUNGalgameTopBar :isMainPage="true" />
<MainPageContent />
<MainPageFooter />
</div>
</template>
<style lang="scss" scoped>
.visual-wrapper {
height: 1500px;
display: flex;
flex-direction: column;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
min-width: 800px;
background-color: var(--kungalgame-white);
}
</style>