From 03af0bcbec9b312ba04609b20419d7e59f19d689 Mon Sep 17 00:00:00 2001 From: kuromoka Date: Thu, 11 Aug 2022 17:00:00 +0900 Subject: [PATCH] add setOptions method --- src/components/LTooltip.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/components/LTooltip.vue b/src/components/LTooltip.vue index 7d8c478..dd5b6b1 100644 --- a/src/components/LTooltip.vue +++ b/src/components/LTooltip.vue @@ -9,6 +9,13 @@ import { tooltip, DomEvent } from 'leaflet'; export default { name: 'LTooltip', mixins: [Popper, Options], + props: { + options: { + type: Object, + custom: true, + default: () => ({}), + }, + }, mounted() { const options = optionsMerger(this.popperOptions, this); this.mapObject = tooltip(options); @@ -38,6 +45,13 @@ export default { } } }, + methods: { + setOptions(newVal) { + this.parentContainer.mapObject + .unbindTooltip() + .bindTooltip(this.mapObject, newVal); + }, + }, };