Loading src/components/LMarker.vue +3 −3 Original line number Diff line number Diff line <script> import { onMounted, ref, reactive, inject } from "vue"; import { onMounted, ref, reactive, inject, h } from "vue"; import { remapEvents, propsBinder, debounce } from "../utils.js"; import { props, setup as markerSetup } from "../functions/marker"; Loading Loading @@ -43,9 +43,9 @@ export default { }); return { ready }; }, render: function (h) { render() { if (this.ready && this.$slots.default) { return h("div", { style: { display: "none" } }, this.$slots.default); return h("div", { style: { display: "none" } }, this.$slots.default()); } return null; }, Loading Loading
src/components/LMarker.vue +3 −3 Original line number Diff line number Diff line <script> import { onMounted, ref, reactive, inject } from "vue"; import { onMounted, ref, reactive, inject, h } from "vue"; import { remapEvents, propsBinder, debounce } from "../utils.js"; import { props, setup as markerSetup } from "../functions/marker"; Loading Loading @@ -43,9 +43,9 @@ export default { }); return { ready }; }, render: function (h) { render() { if (this.ready && this.$slots.default) { return h("div", { style: { display: "none" } }, this.$slots.default); return h("div", { style: { display: "none" } }, this.$slots.default()); } return null; }, Loading