|
@@ -1,4 +1,4 @@
|
1
|
|
-import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
|
|
1
|
+import { createRouter, createWebHistory , RouteRecordRaw } from 'vue-router'
|
2
|
2
|
import HomeView from '../views/HomeView.vue'
|
3
|
3
|
import radar from '../views/radar.vue'
|
4
|
4
|
|
|
@@ -16,7 +16,7 @@ const routes: Array<RouteRecordRaw> = [
|
16
|
16
|
]
|
17
|
17
|
|
18
|
18
|
const router = createRouter({
|
19
|
|
- history: createWebHashHistory(process.env.BASE_URL),
|
|
19
|
+ history: createWebHistory (process.env.BASE_URL),
|
20
|
20
|
routes
|
21
|
21
|
})
|
22
|
22
|
|