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

17 lines
324 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: '账号登录?',
needLogin: false,
},
component: () => import('@/views/auth/login'),
},
],
}