mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-18 10:00:40 +08:00
17 lines
323 B
TypeScript
17 lines
323 B
TypeScript
const AuthRoutes = {
|
|
path: '/auth',
|
|
component: () => import('@/layouts/blank/BlankLayout.vue'),
|
|
meta: {
|
|
requiresAuth: false
|
|
},
|
|
children: [
|
|
{
|
|
name: 'Login',
|
|
path: '/auth/login',
|
|
component: () => import('@/views/authentication/auth/LoginPage.vue')
|
|
}
|
|
]
|
|
};
|
|
|
|
export default AuthRoutes;
|