- libary updates for prettier, eslint and typescript

- uninstall @types/xml2js (save-dev) and core-js (save)
- remove HelloWorld component from app.ts and app2.ts
This commit is contained in:
Arno Kaimbacher 2023-01-16 15:19:14 +01:00
parent 6295f7ea1c
commit 426228705c
25 changed files with 961 additions and 4286 deletions

View file

@ -1,5 +1,6 @@
import { Component, Vue } from "vue-facing-decorator";
import MapComponent from "@/components/map/map.component.vue";
import { defineAsyncComponent } from "vue";
// import MapComponent from "@/components/map/map.component.vue";
// import { Marker, MapOptions, Control, icon, LatLngBoundsExpression } from "leaflet";
import { MapOptions } from "leaflet";
@ -10,8 +11,11 @@ import { MapOptions } from "leaflet";
@Component({
name: "MapViewComponent",
components: {
MapComponent,
MapComponent: defineAsyncComponent(() => import("@/components/map/map.component.vue")),
},
// components: {
// MapComponent,
// },
})
export default class MapViewComponent extends Vue {
public mapOptions: MapOptions = {