diff --git a/cloud/bigscreen-design/src/router.js b/cloud/bigscreen-design/src/router.js index 9b1c8db..fe9ba55 100644 --- a/cloud/bigscreen-design/src/router.js +++ b/cloud/bigscreen-design/src/router.js @@ -1,7 +1,7 @@ -import { createRouter, createWebHistory } from 'vue-router'; +import { createRouter, createWebHashHistory } from 'vue-router' const vueRouter = createRouter({ base: import.meta.env.VITE_APP_BASE, - history: createWebHistory(), + history: createWebHashHistory(), routes: [{ path: '/', component: () => import( /* webpackChunkName: "page" */ '@/page/index.vue'),