You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
9 months ago
|
export const constRouter: any =
|
||
|
{
|
||
|
path: '/',
|
||
|
component: () => import('@/Layout/index.vue'),
|
||
|
name: 'Layout',
|
||
|
redirect: '/home',
|
||
|
meta: {
|
||
|
icon: '',
|
||
|
title: '',
|
||
|
hidden: false,
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: '/home',
|
||
|
name: 'Home',
|
||
|
component: () => import('@/views/home/index.vue'),
|
||
|
meta: {
|
||
|
icon: '',
|
||
|
title: '首页',
|
||
|
hidden: false,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
path: '/appraise',
|
||
|
name: 'Appraise',
|
||
|
component: () => import('@/views/appraise/index.vue'),
|
||
|
meta: {
|
||
|
icon: '',
|
||
|
title: '竞赛评价',
|
||
|
hidden: false,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
path: '/navigation',
|
||
|
name: 'Navigation',
|
||
|
component: () => import('@/views/navigation/index.vue'),
|
||
|
meta: {
|
||
|
icon: '',
|
||
|
title: '竞赛导航',
|
||
|
hidden: false,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
path: '/achievement',
|
||
|
name: 'Achievement',
|
||
|
component: () => import('@/views/achievement/index.vue'),
|
||
|
meta: {
|
||
|
icon: '',
|
||
|
title: '竞赛成果',
|
||
|
hidden: false,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
|