This commit is contained in:
liqiang-fit2cloud 2024-12-09 18:31:16 +08:00
commit 95a420ba82
3 changed files with 6 additions and 3 deletions

View File

@ -9,7 +9,8 @@ const applicationRouter = {
children: [ children: [
{ {
path: '/application', path: '/application',
name: 'application', name: 'application-index',
meta: { title: '应用主页', activeMenu: '/application' },
component: () => import('@/views/application/index.vue') component: () => import('@/views/application/index.vue')
}, },
{ {

View File

@ -8,7 +8,8 @@ const datasetRouter = {
children: [ children: [
{ {
path: '/dataset', path: '/dataset',
name: 'dataset', name: 'dataset-index',
meta: { title: '知识库主页', activeMenu: '/dataset' },
component: () => import('@/views/dataset/index.vue') component: () => import('@/views/dataset/index.vue')
}, },
{ {

View File

@ -8,7 +8,8 @@ const functionLibRouter = {
children: [ children: [
{ {
path: '/function-lib', path: '/function-lib',
name: 'function-lib', name: 'function-lib-index',
meta: { title: '函数库主页', activeMenu: '/function-lib' },
component: () => import('@/views/function-lib/index.vue') component: () => import('@/views/function-lib/index.vue')
} }
] ]