Files
xl-root/src/router/routes.js
2025-02-27 14:38:47 +08:00

19 lines
343 B
JavaScript

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;