| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- export default {
- routes: {
- path: '/system',
- name: 'SystemModule',
- component: () => import('@/layout/index.vue'),
- meta: {
- title: '系统管理',
- icon: 'Setting',
- permission: 'system'
- },
- children: [
- {
- path: 'config',
- name: 'SystemConfig',
- component: () => import('./views/SystemConfig.vue'),
- meta: {
- title: '系统配置',
- icon: 'Tools'
- }
- },
- {
- path: 'plugin-config',
- name: 'PluginConfig',
- component: () => import('./views/PluginConfig.vue'),
- meta: {
- title: '插件配置',
- icon: 'Connection',
- hidden: true
- }
- }
- ]
- },
- menus: [
- {
- path: '/system',
- title: '系统管理',
- icon: 'Setting',
- permission: 'system',
- children: [
- {
- path: '/system/config',
- title: '系统配置',
- icon: 'Tools'
- }
- ]
- }
- ]
- }
|