msal working

This commit is contained in:
andrea.terzani
2025-04-16 19:31:21 +02:00
parent 5cc54c9332
commit 0e69938d97
6 changed files with 130 additions and 130 deletions

View File

@@ -63,12 +63,18 @@ const router = createRouter({
{
path: '/auth/login',
name: 'login',
meta: {
auth: false
},
component: () => import('@/views/pages/auth/Login.vue')
},
{
path: '/temp',
path: '/auth/callback',
name: 'test',
component: () => import('@/views/pages/auth/Temp.vue')
meta: {
auth: false
},
component: () => import('@/views/pages/auth/Callback.vue')
}
]
});