import { DollarOutlined } from '@ant-design/icons-vue' export default [ { path: 'baseSet', name: 'baseSet', component: 'RouteViewLayout', meta: { icon: DollarOutlined, title: '基础配置', isMenu: true, keepAlive: true, permission: '*', }, children: [ { path: 'serverProjectManage', name: 'serverProjectManage', component: 'baseSet/serverProjectManage/index.vue', meta: { title: '服务项目管理', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'callBaseSet', name: 'callBaseSet', component: 'baseSet/callBaseSet/index.vue', meta: { title: '基础配置', isMenu: true, keepAlive: true, permission: '*', }, }, ], }, ]