diff --git a/src/scripts/router.ts b/src/scripts/router.ts index 7dcf577..c2ebfbb 100644 --- a/src/scripts/router.ts +++ b/src/scripts/router.ts @@ -1,4 +1,10 @@ -import {createRouter, createWebHashHistory, NavigationFailure, RouteRecordRaw} from 'vue-router' +import { + createRouter, + createWebHashHistory, + createWebHistory, + NavigationFailure, + RouteRecordRaw +} from 'vue-router' import Home from '../views/Home.vue' const routes: Array = [ @@ -57,7 +63,7 @@ const routes: Array = [ ] export const router = createRouter({ - history: createWebHashHistory(), + history: createWebHistory(), routes })