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;
|
|