fix:修复路由错误

This commit is contained in:
cloudy2331
2026-03-26 23:01:15 +08:00
parent 2680bce72e
commit 439a8e70de

View File

@@ -1,4 +1,4 @@
import { createWebHistory, createRouter } from 'vue-router';
import { createWebHashHistory, createRouter } from 'vue-router';
import Account from './components/Account.vue';
import PassKey from './components/PassKey.vue';
@@ -9,7 +9,7 @@ const routes = [
];
const router = createRouter({
history: createWebHistory(),
history: createWebHashHistory(),
routes
});