Browse Source

更换为hash模式

citygis-lhh 4 months ago
parent
commit
31ab435ab4
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/router/index.js

+ 4 - 4
src/router/index.js

@@ -1,7 +1,7 @@
-import { createRouter, createWebHistory } from 'vue-router'
+import { createRouter, createWebHistory, createWebHashHistory } from 'vue-router';
 
 const router = createRouter({
-  history: createWebHistory(import.meta.env.BASE_URL),
+  history: createWebHashHistory(import.meta.env.BASE_URL),
   routes: [
     {
       path: '',
@@ -13,6 +13,6 @@ const router = createRouter({
       component: () => import('../views/DataCenterGis/DataCenterGis.vue')
     }
   ]
-})
+});
 
-export default router
+export default router;