Просмотр исходного кода

更改路由模式为hash模式

tongshangming 3 месяцев назад
Родитель
Сommit
88c92a4aeb
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/router/index.ts

+ 2 - 2
src/router/index.ts

@@ -1,10 +1,10 @@
-import { createRouter, createWebHistory } from 'vue-router'
+import { createRouter, createWebHashHistory } from 'vue-router'
 import constantRouter from './constantRouter'
 import createRouterGuard from './guard'
 export { default as asyncRouter } from './asyncRouter'
 
 const router = createRouter({
-  history: createWebHistory(import.meta.env.BASE_URL),
+  history: createWebHashHistory(import.meta.env.BASE_URL),
   routes: [...constantRouter]
 })