feat: add project view

This commit is contained in:
alivender
2025-04-25 16:11:53 +08:00
parent 4465091db3
commit cfd8769e9b
6 changed files with 589 additions and 3 deletions

View File

@@ -3,13 +3,15 @@ import LoginView from "../views/LoginView.vue";
import UserView from "../views/UserView.vue";
import TestView from "../views/TestView.vue";
import JtagTest from "../views/JtagTest.vue";
import ProjectView from "../views/ProjectView.vue";
const routes = [
{ path: "/", redirect: "/user" },
{ path: "/login", name: "Login", component: LoginView },
{ path: "/user", name: "User", component: UserView },
{ path: "/test", name: "Test", component: TestView },
{ path: "/test/jtag", name:"JtagTest", component: JtagTest}
{ path: "/test/jtag", name:"JtagTest", component: JtagTest},
{ path: "/project", name: "Project", component: ProjectView } // 新增工程界面
];
const router = createRouter({