Files
xl-root/src/router/routes.js

19 lines
343 B
JavaScript
Raw Normal View History

2025-02-27 14:38:47 +08:00
const routes = [
{
path: '/',
redirect: '/home',
},
{
path: '/home',
name: 'home',
component: () => import('../pages/layout/index.vue'),
},
{
path: '/login',
name: 'login',
component: () => import('../pages/login/index.vue'),
},
]
export default routes;