前端登录逻辑对接

This commit is contained in:
陈淳
2022-10-13 11:05:43 +08:00
parent de28fd4ca4
commit edde5f8a88
11 changed files with 421 additions and 470 deletions

View File

@@ -2,6 +2,7 @@ import { createWebHistory, createRouter } from 'vue-router';
import Layout from '@/layout/index.vue';
export const constantRoutes = [
{
name:'Layout',
path: '/',
@@ -45,7 +46,7 @@ export const constantRoutes = [
},
{
path: '/login',
component: () => import('@/view/Login.vue'),
component: () => import('@/view/login.vue'),
name: 'Login',
},
];