first commit

Signed-off-by: garionion <github@entr0py.de>
This commit is contained in:
garionion 2021-04-02 23:11:05 +02:00
commit bb249e63fc
Signed by: garionion
GPG key ID: 53352FA607FA681A
21 changed files with 4319 additions and 0 deletions

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

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