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.

27 lines
781 B

export default [
3 years ago
{
path: '/user',
layout: false,
routes: [
{ path: '/user', routes: [{ name: '登录', path: '/user/login', component: './user/Login' }] },
{ component: './404' },
3 years ago
],
},
{ path: '/welcome', name: '欢迎', icon: 'smile', component: './Welcome' },
3 years ago
{
path: '/admin',
name: '管理页',
3 years ago
icon: 'crown',
access: 'canAdmin',
component: './Admin',
routes: [
{ path: '/admin/sub-page', name: '二级管理页', icon: 'smile', component: './Welcome' },
{ component: './404' },
3 years ago
],
},
{ name: '查询表格', icon: 'table', path: '/list', component: './TableList' },
{ path: '/', redirect: '/welcome' },
{ icon: 'smile', path: '/poem', component: './PoemPage' },
{ component: './404' },
3 years ago
];