This commit is contained in:
andrea.terzani
2025-04-17 16:10:18 +02:00
7 changed files with 432 additions and 46 deletions

View File

@@ -12,9 +12,6 @@ const router = createRouter({
auth: true
},
children: [
{
path: 'scenario',
children: [
{
path: '/projects',
name: 'projects-list',
@@ -62,15 +59,24 @@ const router = createRouter({
name: 'chat',
component: () => import('@/views/pages/chat/ChatPage.vue')
}
]
}
]
},
{
path: '/auth/login',
name: 'login',
component: () => import('@/views/pages/auth/Login.vue')
}
meta: {
auth: false
},
component: () => import('@/views/pages/auth/Login.vue')
},
{
path: '/auth/callback',
name: 'test',
meta: {
auth: false
},
component: () => import('@/views/pages/auth/Callback.vue')
}
]
});