import { BlankLayout } from '@/layouts' import type { AppRouteRecordRaw } from '@/router/model' export const systemConfiguration: AppRouteRecordRaw[] = [ { path: '/system/configuration', name: 'SystemConfiguration', meta: { title: '系统配置', icon: 'system_config', hideChildrenInMenu: true, }, redirect: '/system/configuration/list', component: BlankLayout, children: [ { path: '/system/configuration/list', name: 'SystemConfiguration', component: () => import('@/views/system-configuration/index.vue'), meta: { title: '系统配置' }, }, ], }, ]