Files
ckb-SuperAdmin/Backend/src/router/auth.js
2025-03-16 17:43:30 +08:00

17 lines
321 B
JavaScript
Executable File

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'),
},
],
}