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
328 B
13 lines
328 B
|
6 years ago
|
/*顶级菜单:演示用例*/
|
||
|
|
|
||
|
|
import {context2array} from '@/router/util'
|
||
|
|
|
||
|
|
const files = require.context('./child', false, /\.js$/)
|
||
|
|
|
||
|
|
export default {
|
||
|
|
path: '/example',
|
||
|
|
component: 'Layout',
|
||
|
6 years ago
|
meta: {title: '演示用例', icon: 'svg-show', noAuth: true, noCache: true, sort: 1},
|
||
|
6 years ago
|
children: context2array(files)
|
||
|
|
}
|