月球大数据地理空间分析展示平台-【前端】-月球2期前端
Surpriseplus
2023-06-01 9b3193643a8f585d96da086bd715a155c24cfbeb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router";
import Index from "../views/Index.vue";
 
const routes: Array<RouteRecordRaw> = [
  {
    path: "/",
    name: "Index",
    component: Index,
  },
];
 
const router = createRouter({
  history: createWebHashHistory(),
  routes,
});
 
export default router;