mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Add dataset sidebar #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -134,7 +134,39 @@ const routes = [
|
||||
{
|
||||
path: '/datasets',
|
||||
layout: false,
|
||||
component: '@/pages/datasets',
|
||||
component: '@/layouts/next',
|
||||
routes: [
|
||||
{
|
||||
path: '/datasets',
|
||||
component: '@/pages/datasets',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/dataset',
|
||||
layout: false,
|
||||
component: '@/layouts/next',
|
||||
routes: [
|
||||
{ path: '/dataset', redirect: '/dataset/dataset' },
|
||||
{
|
||||
path: '/dataset',
|
||||
component: '@/pages/dataset',
|
||||
routes: [
|
||||
{
|
||||
path: '/dataset/dataset',
|
||||
component: '@/pages/dataset/dataset',
|
||||
},
|
||||
{
|
||||
path: '/dataset/configuration',
|
||||
component: '@/pages/dataset/settings',
|
||||
},
|
||||
{
|
||||
path: '/dataset/testing',
|
||||
component: '@/pages/dataset/testing',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/profile-setting',
|
||||
|
||||
Reference in New Issue
Block a user