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.

12 lines
328 B

/*顶级菜单:演示用例*/
import {context2array} from '@/router/util'
const files = require.context('./child', false, /\.js$/)
export default {
path: '/example',
component: 'Layout',
meta: {title: '演示用例', icon: 'svg-show', noAuth: true, noCache: true, sort: 1},
children: context2array(files)
}