feat: remake most of forntend

This commit is contained in:
alivender
2025-04-26 19:59:35 +08:00
parent 4e741f9ef8
commit bc4f44ecaa
41 changed files with 84095 additions and 672 deletions

View File

@@ -1,4 +1,4 @@
import { createMemoryHistory, createRouter } from "vue-router";
import { createWebHistory, createRouter } from "vue-router";
import LoginView from "../views/LoginView.vue";
import UserView from "../views/UserView.vue";
import TestView from "../views/TestView.vue";
@@ -16,7 +16,7 @@ const routes = [
];
const router = createRouter({
history: createMemoryHistory(),
history: createWebHistory(),
routes,
});