Files
YG-Datasets/frontend/src/router/index.js
Developer 5f56eec248 feat(frontend): 更新依赖和路由配置
- 更新 npm 依赖 (package.json)
- 更新路由配置 (router/index.js)
- 更新 Vite 构建配置 (vite.config.js)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 17:30:21 +08:00

68 lines
1.5 KiB
JavaScript

import { createRouter, createWebHistory } from 'vue-router'
const routes = [
{
path: '/',
name: 'Home',
component: () => import('@/views/HomeView.vue')
},
{
path: '/project/:id',
name: 'Project',
component: () => import('@/views/ProjectView.vue'),
children: [
{
path: '',
redirect: to => `/project/${to.params.id}/files`
},
{
path: 'files',
name: 'ProjectFiles',
component: () => import('@/views/project/FileManage.vue')
},
{
path: 'split',
name: 'ProjectSplit',
component: () => import('@/views/project/TextSplit.vue')
},
{
path: 'questions',
name: 'ProjectQuestions',
component: () => import('@/views/project/QuestionManage.vue')
},
{
path: 'datasets',
name: 'ProjectDatasets',
component: () => import('@/views/project/DatasetManage.vue')
},
{
path: 'eval',
name: 'ProjectEval',
component: () => import('@/views/project/EvalManage.vue')
},
{
path: 'settings',
name: 'ProjectSettings',
component: () => import('@/views/project/Settings.vue')
}
]
},
{
path: '/models',
name: 'ModelSettings',
component: () => import('@/views/ModelSettingsView.vue')
},
{
path: '/data-square',
name: 'DataSquare',
component: () => import('@/views/DataSquareView.vue')
}
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router