2023-04-14 13:58:13 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import KUNGalgameTopBar from "../../components/KUNGalgameTopBar.vue";
|
2023-04-18 08:04:47 +00:00
|
|
|
import MainPageContent from "./content/MainPageContent.vue";
|
2023-04-14 13:58:13 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "KUNGalgameMainPage",
|
2023-04-18 08:04:47 +00:00
|
|
|
components: { KUNGalgameTopBar, MainPageContent },
|
2023-04-14 13:58:13 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<!-- 可视部分的容器 -->
|
|
|
|
<div class="visual-wrapper">
|
|
|
|
<KUNGalgameTopBar />
|
2023-04-18 08:04:47 +00:00
|
|
|
<MainPageContent/>
|
2023-04-14 13:58:13 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-04-18 08:04:47 +00:00
|
|
|
<style lang="less">
|
2023-04-14 13:58:13 +00:00
|
|
|
.visual-wrapper {
|
|
|
|
height: 1500px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
// background-image: url(../../assets/images/bg.png);
|
|
|
|
// background-image: url(./img/bg-dark.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
min-width: 700px;
|
|
|
|
font-family: "adobe-clean", "Source Sans Pro", -apple-system,
|
|
|
|
"BlinkMacSystemFont", "Segoe UI,Roboto", sans-serif;
|
|
|
|
}
|
|
|
|
</style>
|