File size: 323 Bytes
8ede856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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;
|