1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00
This commit is contained in:
handsomewu 2024-11-13 20:05:03 +08:00
commit 99f710a909
3 changed files with 9 additions and 9 deletions

View File

@ -3,25 +3,25 @@
import Layout from '@/layout' import Layout from '@/layout'
const tableRouter = { const tableRouter = {
path: '/table', path: '/deploy',
component: Layout, component: Layout,
redirect: '/table/complex-table', redirect: '/deploy/app',
name: 'Table', name: 'Deploy',
meta: { meta: {
title: '算力请求', title: '算力请求',
icon: 'edit' icon: 'edit'
}, },
children: [ children: [
{ {
path: 'dynamic-table', path: 'app',
component: () => import('@/views/table/dynamic-table/index'), component: () => import('@/views/deploy/app.vue'),
name: 'DynamicTable', name: 'DeployApp',
meta: { title: '应用部署' } meta: { title: '应用部署' }
}, },
{ {
path: 'drag-table', path: 'service',
component: () => import('@/views/table/drag-table'), component: () => import('@/views/deploy/service.vue'),
name: 'DragTable', name: 'DeployService',
meta: { title: '服务部署' } meta: { title: '服务部署' }
} }
] ]

0
src/views/deploy/app.vue Normal file
View File

View File