- add vue router
- add extra view components
This commit is contained in:
parent
a4e8ee6f2e
commit
2cbe628d10
13 changed files with 567 additions and 446 deletions
9
src/views/map-view/map-view-component.ts
Normal file
9
src/views/map-view/map-view-component.ts
Normal 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> = [];
|
||||
}
|
8
src/views/map-view/map-view-component.vue
Normal file
8
src/views/map-view/map-view-component.vue
Normal file
|
@ -0,0 +1,8 @@
|
|||
<template>
|
||||
<span>INTRO</span>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import MapViewComponent from "./map-view-component";
|
||||
export default MapViewComponent;
|
||||
</script>
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue