- add further views

- also use constants via Webpack DefinePlugin
This commit is contained in:
Arno Kaimbacher 2021-11-30 15:26:40 +01:00
parent 952f51a1a7
commit 2c0c67cd64
11 changed files with 144 additions and 115 deletions

View file

@ -4,6 +4,7 @@ import HelpViewComponent from "@/views/map-view/help-view-component.vue";
import SearchViewComponent from "@/views/search-view/search-view-component";
import ServiceViewComponent from "@/views/services-view/service-view-component.vue";
import OaiViewComponent from "@/views/oai-view/oai-view-component.vue";
import ContactViewComponent from "@/views/contact-view/contact-view-component.vue";
const routes = [
{
@ -31,6 +32,11 @@ const routes = [
name: "Oai",
component: OaiViewComponent,
},
{
path: "/contact",
name: "Contact",
component: ContactViewComponent,
},
];
const router = createRouter({