|
@@ -1,4 +1,4 @@
|
|
|
-import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
|
|
|
+import { createRouter, createWebHashHistory, RouteRecordRaw, createWebHistory } from 'vue-router'
|
|
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
|
{
|
|
@@ -14,6 +14,6 @@ const routes: RouteRecordRaw[] = [
|
|
|
]
|
|
|
|
|
|
export default createRouter({
|
|
|
- history: createWebHashHistory(),
|
|
|
+ history: createWebHistory(),
|
|
|
routes
|
|
|
})
|