Initial commit

This commit is contained in:
Oliver Traber 2021-11-15 18:21:18 +01:00
commit 97917fb531
Signed by: Bluemedia
GPG key ID: C7BA47275B086E2C
21 changed files with 9366 additions and 0 deletions

23
src/router/index.js Normal file
View file

@ -0,0 +1,23 @@
import { createRouter, createWebHashHistory } from "vue-router";
import Home from "../views/Home.vue";
import Watch from "../views/Watch.vue";
const routes = [
{
path: "/",
name: "home",
component: Home,
},
{
path: "/watch",
name: "watch",
component: Watch,
},
];
const router = createRouter({
history: createWebHashHistory(),
routes,
});
export default router;