Files
cunkebao_v3/Backend/src/router/auth.js

25 lines
511 B
JavaScript
Raw Normal View History

2025-03-12 12:48:13 +08:00
export default {
path: '/auth',
name: 'auth',
redirect: '/auth/login',
component: () => import('@/views/auth/layout'),
children: [
{
path: '/auth/login',
meta: {
title: '账号登录',
2025-03-12 12:48:13 +08:00
needLogin: false,
},
component: () => import('@/views/auth/login'),
},
{
path: '/auth/mobile-login',
meta: {
title: '手机号登录',
needLogin: false,
},
component: () => import('@/views/auth/mobile-login'),
},
2025-03-12 12:48:13 +08:00
],
}