|
@@ -1,4 +1,4 @@
|
|
-import { createRouter, createWebHistory } from "vue-router";
|
|
|
|
|
|
+import { createRouter, createWebHashHistory } from "vue-router";
|
|
import { defineComponent } from "vue";
|
|
import { defineComponent } from "vue";
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -93,7 +93,7 @@ const routes = [
|
|
];
|
|
];
|
|
|
|
|
|
const router = createRouter({
|
|
const router = createRouter({
|
|
- history: createWebHistory(process.env.BASE_URL),
|
|
|
|
|
|
+ history: createWebHashHistory(process.env.BASE_URL),
|
|
routes,
|
|
routes,
|
|
});
|
|
});
|
|
|
|
|