This commit is contained in:
andrea.terzani
2025-04-17 16:44:17 +02:00
parent d01124ca64
commit a07f9a7b1c
2 changed files with 5 additions and 0 deletions

View File

@@ -12,6 +12,9 @@ const router = createRouter({
auth: true auth: true
}, },
children: [ children: [
{
path: 'scenario',
children: [
{ {
path: '/projects', path: '/projects',
name: 'projects-list', name: 'projects-list',
@@ -59,6 +62,8 @@ const router = createRouter({
name: 'chat', name: 'chat',
component: () => import('@/views/pages/chat/ChatPage.vue') component: () => import('@/views/pages/chat/ChatPage.vue')
} }
]
}
] ]
}, },
{ {