generated from Leo_Ding/web-template
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
import { SettingOutlined } from '@ant-design/icons-vue'
|
|
|
|
export default [
|
|
{
|
|
path: 'computing',
|
|
name: 'computing',
|
|
component: 'RouteViewLayout',
|
|
meta: {
|
|
icon: 'icon-zhifudingjin',
|
|
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: '*',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
]
|