编写登录用的api和后端代码

This commit is contained in:
2023-02-28 19:58:03 +08:00
parent e49f4426f3
commit 1fa3b7cfdc
9 changed files with 78 additions and 20 deletions

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-02-28 01:22:48
* @LastEditors: Kane
* @FilePath: /deskop_task_schedule/code/web/task_schedule/src/router/index.js
* @FilePath: /task_schedule/src/router/index.js
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
@@ -21,7 +21,13 @@ const routes = [
path: "/login",
name: "Login",
hidden: true,
component: () => import("@/components/login/login.vue"),
component: () => import("@/views/Login.vue"),
},
{
path: "/public",
name: "Public",
hidden: true,
component: () => import("@/views/Public.vue"),
},
];