Feat: Add dataset sidebar #3221 (#3683)

### 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:
balibabu
2024-11-27 18:06:05 +08:00
committed by GitHub
parent 2249d5d413
commit 535b15ace9
10 changed files with 263 additions and 1 deletions

View File

@ -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',