- add vue router

- add extra view components
This commit is contained in:
Arno Kaimbacher 2021-11-23 17:30:19 +01:00
commit 2cbe628d10
13 changed files with 567 additions and 446 deletions

View file

@ -0,0 +1,9 @@
import { Options, Vue } from "vue-class-component";
// import { Prop } from "vue-property-decorator";
@Options({
name: "MapViewComponent",
})
export default class MapViewComponent extends Vue {
results: Array<any> = [];
}