add: AdminView and remote update view

This commit is contained in:
alivender
2025-05-14 19:44:39 +08:00
parent 099d44663d
commit 21197887cd
3 changed files with 141 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import TestView from "../views/TestView.vue";
import JtagTest from "../views/JtagTest.vue";
import ProjectView from "../views/ProjectView.vue";
import HomeView from "@/views/HomeView.vue";
import AdminView from "@/views/AdminView.vue";
const routes = [
{ path: "/", name: "Home", component: HomeView },
@@ -13,6 +14,7 @@ const routes = [
{ path: "/test", name: "Test", component: TestView },
{ path: "/test/jtag", name: "JtagTest", component: JtagTest },
{ path: "/project", name: "Project", component: ProjectView },
{ path: "/admin", name: "Admin", component: AdminView },
];
const router = createRouter({