Poprawki interfejsu

This commit is contained in:
2021-06-29 17:55:22 +02:00
parent 2a23604b9c
commit 668e2027f9
7 changed files with 58 additions and 94 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
import StationsView from "@/views/StationsView.vue";
@@ -24,7 +24,7 @@ const routes: Array<RouteRecordRaw> = [
]
const router = createRouter({
history: createWebHashHistory(),
history: createWebHistory(),
routes,
})