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