Loading src/components/LMap.vue +2 −2 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ import { propsBinder, debounce, resetWebpackIcon, generateMethodsPlaceholder, generatePlaceholderMethods, } from "../utils.js"; export default { Loading Loading @@ -169,7 +169,7 @@ export default { markerZoomAnimation: props.markerZoomAnimation, }; const schematics = generateMethodsPlaceholder([ const schematics = generatePlaceholderMethods([ "addLayer", "removeLayer", "registerLayerControl", Loading src/components/LMarker.vue +2 −2 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ import { remapEvents, propsBinder, debounce, generateMethodsPlaceholder, generatePlaceholderMethods, } from "../utils.js"; import { props, setup as markerSetup } from "../functions/marker"; Loading @@ -18,7 +18,7 @@ export default { const leafletRef = ref({}); const ready = ref(false); const schematics = generateMethodsPlaceholder(["latLng"]); const schematics = generatePlaceholderMethods(["latLng"]); const lMethods = inject("leafLetMethods"); const { options, methods } = markerSetup( Loading src/utils.js +1 −1 Original line number Diff line number Diff line Loading @@ -71,7 +71,7 @@ export const resetWebpackIcon = (Icon) => { }); }; export const generateMethodsPlaceholder = (methods) => { export const generatePlaceholderMethods = (methods) => { const base = reactive({}); return methods.reduce((acc, curr) => { acc[curr] = () => Loading Loading
src/components/LMap.vue +2 −2 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ import { propsBinder, debounce, resetWebpackIcon, generateMethodsPlaceholder, generatePlaceholderMethods, } from "../utils.js"; export default { Loading Loading @@ -169,7 +169,7 @@ export default { markerZoomAnimation: props.markerZoomAnimation, }; const schematics = generateMethodsPlaceholder([ const schematics = generatePlaceholderMethods([ "addLayer", "removeLayer", "registerLayerControl", Loading
src/components/LMarker.vue +2 −2 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ import { remapEvents, propsBinder, debounce, generateMethodsPlaceholder, generatePlaceholderMethods, } from "../utils.js"; import { props, setup as markerSetup } from "../functions/marker"; Loading @@ -18,7 +18,7 @@ export default { const leafletRef = ref({}); const ready = ref(false); const schematics = generateMethodsPlaceholder(["latLng"]); const schematics = generatePlaceholderMethods(["latLng"]); const lMethods = inject("leafLetMethods"); const { options, methods } = markerSetup( Loading
src/utils.js +1 −1 Original line number Diff line number Diff line Loading @@ -71,7 +71,7 @@ export const resetWebpackIcon = (Icon) => { }); }; export const generateMethodsPlaceholder = (methods) => { export const generatePlaceholderMethods = (methods) => { const base = reactive({}); return methods.reduce((acc, curr) => { acc[curr] = () => Loading