bkui-vue 0.0.2-beta.108 → 0.0.2-beta.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +10 -10
- package/dist/index.esm.js +210 -210
- package/dist/index.umd.js +9 -9
- package/lib/directives/index.js +3 -1
- package/package.json +1 -1
package/lib/directives/index.js
CHANGED
@@ -1038,7 +1038,9 @@ var tooltips = {
|
|
1038
1038
|
});
|
1039
1039
|
},
|
1040
1040
|
updated: function updated(el, binding) {
|
1041
|
-
tooltips_nodeList.get(el)
|
1041
|
+
if (tooltips_nodeList.get(el)) {
|
1042
|
+
tooltips_nodeList.get(el).opts = getOpts(binding);
|
1043
|
+
}
|
1042
1044
|
},
|
1043
1045
|
unmounted: function unmounted(el) {
|
1044
1046
|
hide(el);
|