basic install

This commit is contained in:
Julian Krauser 2024-08-22 11:48:04 +02:00
parent 9d7d1cef8e
commit 62990170de
20 changed files with 10349 additions and 0 deletions

15
src/router/index.ts Normal file
View file

@ -0,0 +1,15 @@
import { createRouter, createWebHistory } from "vue-router";
import HomeView from "../views/HomeView.vue";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: "/",
name: "home",
component: HomeView,
},
],
});
export default router;