deleted layout
This commit is contained in:
parent
c9e3be748a
commit
0172db4380
|
@ -1,10 +1,10 @@
|
||||||
<!-- App -->
|
<!-- App -->
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import KUNGalgameMain from './layout/KUNGalgameMain.vue';
|
import KUNGalgameMainPage from "./views/Home/KUNGalgameMainPage.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<KUNGalgameMain/>
|
<KUNGalgameMainPage />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
<script setup lang='ts'>
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
|
|
||||||
</style>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<script setup lang='ts'>
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<router-view />
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
|
|
||||||
</style>
|
|
|
@ -8,12 +8,13 @@ import {
|
||||||
/** 常驻路由 */
|
/** 常驻路由 */
|
||||||
export const constantRoutes: RouteRecordRaw[] = [
|
export const constantRoutes: RouteRecordRaw[] = [
|
||||||
{
|
{
|
||||||
name: "topic",
|
name: "Topic",
|
||||||
path: "/topic",
|
path: "/topic",
|
||||||
|
// 路由懒加载
|
||||||
component: () => import("@/views/topic/KUNGalgameTopicPage.vue"),
|
component: () => import("@/views/topic/KUNGalgameTopicPage.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "kun",
|
name: "KUN",
|
||||||
path: "/",
|
path: "/",
|
||||||
component: () => import("@/views/Home/KUNGalgameMainPage.vue"),
|
component: () => import("@/views/Home/KUNGalgameMainPage.vue"),
|
||||||
},
|
},
|
||||||
|
|
|
@ -24,7 +24,7 @@ import MainPageFooter from "./footer/MainPageFooter.vue";
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
min-width: 700px;
|
min-width: 800px;
|
||||||
font-family: "adobe-clean", "Source Sans Pro", -apple-system,
|
font-family: "adobe-clean", "Source Sans Pro", -apple-system,
|
||||||
"BlinkMacSystemFont", "Segoe UI,Roboto", sans-serif;
|
"BlinkMacSystemFont", "Segoe UI,Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue