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.
26 lines
781 B
26 lines
781 B
export default [
|
|
{
|
|
path: '/user',
|
|
layout: false,
|
|
routes: [
|
|
{ path: '/user', routes: [{ name: '登录', path: '/user/login', component: './user/Login' }] },
|
|
{ component: './404' },
|
|
],
|
|
},
|
|
{ path: '/welcome', name: '欢迎', icon: 'smile', component: './Welcome' },
|
|
{
|
|
path: '/admin',
|
|
name: '管理页',
|
|
icon: 'crown',
|
|
access: 'canAdmin',
|
|
component: './Admin',
|
|
routes: [
|
|
{ path: '/admin/sub-page', name: '二级管理页', icon: 'smile', component: './Welcome' },
|
|
{ component: './404' },
|
|
],
|
|
},
|
|
{ name: '查询表格', icon: 'table', path: '/list', component: './TableList' },
|
|
{ path: '/', redirect: '/welcome' },
|
|
{ icon: 'smile', path: '/poem', component: './PoemPage' },
|
|
{ component: './404' },
|
|
];
|
|
|