- set public path to /

- on route change event close bulma navbar (in app.ts)
This commit is contained in:
Arno Kaimbacher 2021-11-26 11:29:13 +01:00
parent 3d53f89694
commit 952f51a1a7
5 changed files with 62 additions and 36 deletions

View file

@ -7,27 +7,27 @@ import OaiViewComponent from "@/views/oai-view/oai-view-component.vue";
const routes = [
{
path: "/test/",
path: "/",
name: "Home",
component: HomeViewComponent,
},
{
path: "/test/help",
path: "/help",
name: "Help",
component: HelpViewComponent,
},
{
path: "/test/search",
path: "/search",
name: "Search",
component: SearchViewComponent,
},
{
path: "/test/services",
path: "/services",
name: "Services",
component: ServiceViewComponent,
},
{
path: "/test/oai",
path: "/oai",
name: "Oai",
component: OaiViewComponent,
},