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.
23 lines
513 B
23 lines
513 B
'use strict';
|
|
import { Journal,Theme } from './containers';
|
|
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/system',
|
|
key: 'system',
|
|
breadcrumb: '系统管理',
|
|
// 不设置 component 则面包屑禁止跳转
|
|
childRoutes: [{
|
|
path: '/journal',
|
|
key: 'journal',
|
|
component: Journal,
|
|
breadcrumb: '操作日志',
|
|
}, {
|
|
path: '/theme',
|
|
key: 'theme',
|
|
component: Theme,
|
|
breadcrumb: '主题设置',
|
|
}]
|
|
}
|
|
}];
|