UNPKG

xlb-main-login

Version:

``` yarn install ```

25 lines (24 loc) 530 B
/** * 基础路由 * @type { *[] } */ export default [ // 用户登录 { path: '/', name: 'login', component: () => import(/* webpackChunkName: "constant" */ '@/views/auth/Login'), }, // 修改密码 { path: '/respwd', name: 'respwd', component: () => import(/* webpackChunkName: "constant" */ '@/components/respwd/respwd'), }, // 用户注册 { path: '/register', name: 'register', component: () => import(/* webpackChunkName: "constant" */ '@/views/auth/Register'), }, ]