diff --git a/src/components/EntityMapMarker.vue b/src/components/EntityMapMarker.vue index 57d4f38..57a6131 100644 --- a/src/components/EntityMapMarker.vue +++ b/src/components/EntityMapMarker.vue @@ -31,19 +31,24 @@ selected: { immediate: true, handler() { + // eslint-disable-next-line no-console console.log('selected', this.selected, this.placeLabel); if (this.selected) { this.$nextTick(() => { + // eslint-disable-next-line no-console console.log('open', this.$refs.popup.open, this.placeLabel); if (this.$refs.popup.open) { this.$refs.popup.remove(); } + // eslint-disable-next-line no-console console.log('toggle', this.placeLabel); this.$refs.marker.togglePopup(); + // eslint-disable-next-line no-console console.log('now open?', this.$refs.popup.open, this.placeLabel); }); } else { this.$nextTick(() => { + // eslint-disable-next-line no-console console.log('remove it', this.placeLabel); this.$refs.popup.remove(); });