blob: 4c70eab5db17a7055dcdb7c064061068cf936ca8 (
plain)
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 HomeView from "./views/Home.vue";
const routes: Array<RouteRecordRaw> = [
{
path: "/",
name: "home",
component: HomeView
}
];
const router = createRouter({
history: createWebHashHistory(),
routes
});
export default router;
|