Add base files

This commit is contained in:
2023-01-13 22:01:37 +01:00
parent 9d5d2f7ed4
commit 0d7c5309a2
16 changed files with 3683 additions and 8 deletions

20
src/router/index.ts Normal file
View File

@ -0,0 +1,20 @@
import { createRouter, createWebHashHistory } from "vue-router"
import HomeView from "../views/HomeView.vue"
const router = createRouter({
history: createWebHashHistory(),
routes: [
{
path: "/",
name: "home",
component: HomeView
},
// {
// path: "/about",
// name: "about",
// component: () => import("../views/AboutView.vue")
// }
]
})
export default router