mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
调整
This commit is contained in:
parent
8d89e20527
commit
fa6a5ced1f
@ -6,27 +6,35 @@ export const constantRouterMap = [
|
|||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
name: 'index',
|
name: 'index',
|
||||||
component: () => import('@/layouts/TabBarLayout'), // 路由懒加载
|
component: () => import('@/layouts/AppLayout'),
|
||||||
redirect: '/home',
|
redirect: '/home',
|
||||||
meta: {
|
meta: {
|
||||||
title: '首页', // 页面标题
|
title: '首页',
|
||||||
keepAlive: false // keep-alive 标识
|
keepAlive: false
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '/home',
|
path: '/',
|
||||||
name: 'Home',
|
component: () => import('@/layouts/TabBarLayout'),
|
||||||
component: () => import('@/views/home/index'),
|
redirect: '/home',
|
||||||
meta: { title: '首页', keepAlive: false }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/about',
|
|
||||||
name: 'About',
|
|
||||||
component: () => import('@/views/home/about'),
|
|
||||||
meta: {
|
meta: {
|
||||||
title: '关于我',
|
title: '首页',
|
||||||
keepAlive: false
|
keepAlive: false
|
||||||
}
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: '/home',
|
||||||
|
name: 'Home',
|
||||||
|
component: () => import('@/views/home/index'),
|
||||||
|
meta: { title: '首页', keepAlive: false }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/about',
|
||||||
|
name: 'About',
|
||||||
|
component: () => import('@/views/home/about'),
|
||||||
|
meta: { title: '关于我', keepAlive: false }
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
14
src/layouts/AppLayout.vue
Normal file
14
src/layouts/AppLayout.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-containter">
|
||||||
|
<keep-alive v-if="$route.meta.keepAlive">
|
||||||
|
<router-view></router-view>
|
||||||
|
</keep-alive>
|
||||||
|
<router-view v-else></router-view>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'AppLayout'
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
x
Reference in New Issue
Block a user