👨🏻‍💻👩🏻‍💻 Use Ant Design like a Pro!
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.
 
 
 

51 lines
831 B

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