This commit is contained in:
2025-05-27 19:15:55 +08:00
parent 1371c6e701
commit 3b57b86afe

View File

@@ -1,10 +1,10 @@
import {createRouter, createWebHistory} from 'vue-router';
import {createMemoryHistory, createRouter} 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: createWebHistory(),
history: createMemoryHistory(),
routes,
})