mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
30 lines
607 B
JavaScript
30 lines
607 B
JavaScript
/**
|
|
* 基础路由
|
|
* @type { *[] }
|
|
*/
|
|
export const constantRouterMap = [
|
|
{
|
|
path: '/',
|
|
component: () => import('@/views/layouts/index'),
|
|
redirect: '/home',
|
|
meta: {
|
|
title: '首页',
|
|
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 }
|
|
}
|
|
]
|
|
}
|
|
]
|