first-update

This commit is contained in:
2026-03-17 14:36:31 +08:00
parent 72f08aee7c
commit 4eddf05e79
516 changed files with 115270 additions and 1 deletions

View File

@@ -0,0 +1,67 @@
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: '/playground',
name: 'Playground',
component: () => import('@/views/PlaygroundView.vue')
},
{
path: '/data-square',
name: 'DataSquare',
component: () => import('@/views/DataSquareView.vue')
}
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router