import { ApartmentOutlined } from '@ant-design/icons-vue' export default [ { path: 'computing', name: 'computing', component: 'RouteViewLayout', meta: { icon: ApartmentOutlined, title: '算力管理', isMenu: true, keepAlive: true, permission: '*', }, children: [ { path: 'computingCenter', name: 'computingCenter', component: 'computing/computingCenter/index.vue', meta: { title: '算力中心', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'host', name: 'host', component: 'computing/host/index.vue', meta: { title: '主机', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'computingCard', name: 'computingCard', component: 'computing/computingCard/index.vue', meta: { title: '算力卡', isMenu: true, keepAlive: true, permission: '*', }, }, ], }, ]