- add home-vie-component with all the logos

This commit is contained in:
Arno Kaimbacher 2021-11-24 16:01:53 +01:00
parent 2cbe628d10
commit 8590fa755b
27 changed files with 787 additions and 463 deletions

View file

@ -1,6 +1,7 @@
import { createWebHistory, createRouter } from "vue-router";
import HomeViewComponent from "@/views/home-view/home-view-component.vue";
import MapViewComponent from "@/views/map-view/map-view-component.vue";
import SearchViewComponent from "@/views/search-view/search-view-component";
const routes = [
{
@ -13,6 +14,11 @@ const routes = [
name: "Map",
component: MapViewComponent,
},
{
path: "/test/search",
name: "Search",
component: SearchViewComponent,
},
];
const router = createRouter({