From 726a57094a0ee1212a75ab5537561074e99e2ea8 Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Thu, 27 Feb 2020 12:04:40 +0300 Subject: [PATCH] Fixed #206 - Tooltip reactive text --- src/components/tooltip/Tooltip.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/tooltip/Tooltip.js b/src/components/tooltip/Tooltip.js index d9eb02b9d..5bfc2fe6f 100644 --- a/src/components/tooltip/Tooltip.js +++ b/src/components/tooltip/Tooltip.js @@ -225,6 +225,10 @@ const Tooltip = { unbind(el) { remove(el); unbindEvents(el); + }, + update(el, options) { + el.$_ptooltipModifiers = options.modifiers; + el.$_ptooltipValue = options.value; } };