This commit is contained in:
2025-06-21 19:27:06 +08:00
parent e50aa7cbdf
commit 9abc42de68
17 changed files with 370 additions and 99 deletions

View File

@@ -1,10 +1,10 @@
import {createMemoryHistory, createRouter} from 'vue-router';
import {createRouter, createWebHashHistory} from 'vue-router';
import routes from "./routes.js";
import {useUserStore} from "../pinia/UserStore/index.js";
import {useSystemStore} from "../pinia/SystemStore/index.js";
const router = createRouter({
history: createMemoryHistory(),
history: createWebHashHistory(),
routes,
})