GPU_Admin/src/router/routes/computing.js
qiuyuan a9fd22c5a3 1
2026-01-23 16:31:02 +08:00

52 lines
1.4 KiB
JavaScript

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: '*',
},
},
],
},
]