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.
13 lines
283 B
13 lines
283 B
2 years ago
|
'use strict';
|
||
|
import homePage from './containers/index';
|
||
|
|
||
|
export default [{
|
||
|
type: 'inner',
|
||
|
route: {
|
||
|
path: '/homePage',
|
||
|
key: 'homePage',
|
||
|
breadcrumb: '首页',
|
||
|
// 不设置 component 则面包屑禁止跳转
|
||
|
component: homePage
|
||
|
}
|
||
|
}];
|