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.
57 lines
1.6 KiB
57 lines
1.6 KiB
/**
|
|
* @name umi 的路由配置
|
|
* @description 只支持 path,component,routes,redirect,wrappers,title 的配置
|
|
* @param path path 只支持两种占位符配置,第一种是动态参数 :id 的形式,第二种是 * 通配符,通配符只能出现路由字符串的最后。
|
|
* @param component 配置 location 和 path 匹配后用于渲染的 React 组件路径。可以是绝对路径,也可以是相对路径,如果是相对路径,会从 src/pages 开始找起。
|
|
* @param routes 配置子路由,通常在需要为多个路径增加 layout 组件时使用。
|
|
* @param redirect 配置路由跳转
|
|
* @param wrappers 配置路由组件的包装组件,通过包装组件可以为当前的路由组件组合进更多的功能。 比如,可以用于路由级别的权限校验
|
|
* @doc https://umijs.org/docs/guides/routes
|
|
*/
|
|
export default [
|
|
{
|
|
path: '/user',
|
|
layout: false,
|
|
routes: [
|
|
{
|
|
name: 'login',
|
|
path: '/user/login',
|
|
component: './User/Login',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: '/welcome',
|
|
name: 'welcome',
|
|
icon: 'smile',
|
|
component: './Welcome',
|
|
},
|
|
{
|
|
path: '/admin',
|
|
name: 'admin',
|
|
icon: 'crown',
|
|
access: 'canAdmin',
|
|
routes: [
|
|
{
|
|
path: '/admin/sub-page',
|
|
name: 'sub-page',
|
|
icon: 'smile',
|
|
component: './Welcome',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'list.table-list',
|
|
icon: 'table',
|
|
path: '/list',
|
|
component: './TableList',
|
|
},
|
|
{
|
|
path: '/',
|
|
redirect: '/welcome',
|
|
},
|
|
{
|
|
path: '*',
|
|
component: './404',
|
|
},
|
|
];
|
|
|