This commit is contained in:
andrea.terzani
2024-07-31 14:32:22 +02:00
parent 8dd4417d0e
commit e466ff879e
7 changed files with 147 additions and 21 deletions

View File

@@ -9,16 +9,10 @@ const router = createRouter({
component: AppLayout,
children: [
{
path: '/',
name: 'dashboard',
component: () => import('@/views/Dashboard.vue')
},
{
path: '/ksdocuments',
path: '/scenario',
children: [
{path: '', name: 'ks-document', component: () => import('@/views/pages/KsDocuments.vue')},
{path: 'new', name: 'ks-document-new', component: () => import('@/views/pages/KsDocumentForm.vue')},
{path: ':id', name: 'ks-document-edit', component: () => import('@/views/pages/KsDocumentForm.vue')}
{path: 'list', name: 'scenario-list', component: () => import('@/views/pages/ScenarioExec.vue')},
{path: ':id', name: 'scenario-exec', component: () => import('@/views/pages/ScenarioExec.vue')}
]