merge
This commit is contained in:
@@ -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')
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user