fixed components
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
choelzl 2022-03-23 10:06:37 +01:00
parent 9f42865072
commit 26d5916c8a
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
2 changed files with 4021 additions and 10 deletions

4009
public/css/index.css Normal file

File diff suppressed because one or more lines are too long

View File

@ -75,15 +75,6 @@ const icon_type = (item)=>{
} }
Vue.component('l-map', window.Vue2Leaflet.LMap);
Vue.component('l-tile-layer', window.Vue2Leaflet.LTileLayer);
Vue.component('l-marker', window.Vue2Leaflet.LMarker);
Vue.component('l-icon', window.Vue2Leaflet.LIcon);
Vue.component('l-popup', window.Vue2Leaflet.LPopup);
Vue.component('l-tooltip', window.Vue2Leaflet.LTooltip);
Vue.component('l-control-scale', window.Vue2Leaflet.LControlScale);
Vue.use(window.VueTextareaAutosize);
Vue.component('multiselect', window.VueMultiselect.default);
const app = new Vue({ const app = new Vue({
el: '#app', el: '#app',
@ -304,3 +295,14 @@ const app = new Vue({
}, },
}, },
}) })
app
.component('l-map', window.Vue2Leaflet.LMap)
.component('l-tile-layer', window.Vue2Leaflet.LTileLayer)
.component('l-marker', window.Vue2Leaflet.LMarker)
.component('l-icon', window.Vue2Leaflet.LIcon)
.component('l-popup', window.Vue2Leaflet.LPopup)
.component('l-tooltip', window.Vue2Leaflet.LTooltip)
.component('l-control-scale', window.Vue2Leaflet.LControlScale)
.use(window.VueTextareaAutosize)
.component('multiselect', window.VueMultiselect.default);