|
@@ -1,5 +1,5 @@
|
|
|
// router/index.js
|
|
|
-import { createRouter, createWebHistory } from 'vue-router';
|
|
|
+import { createRouter, createWebHashHistory } from 'vue-router';
|
|
|
import store from '../store';
|
|
|
|
|
|
// import Home from "../views/Home.vue"
|
|
@@ -63,7 +63,7 @@ const routes = [
|
|
|
];
|
|
|
|
|
|
const router = createRouter({
|
|
|
- history: createWebHistory(),
|
|
|
+ history: createWebHashHistory(),
|
|
|
routes
|
|
|
});
|
|
|
|