فهرست منبع

Tooltip: invoke 'doDestory' manually when disabled (#10498)

blackmiaool 7 سال پیش
والد
کامیت
cdb7a34136
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      packages/tooltip/src/main.js

+ 4 - 0
packages/tooltip/src/main.js

@@ -191,6 +191,10 @@ export default {
         clearTimeout(this.timeoutPending);
       }
       this.showPopper = false;
+
+      if (this.disabled) {
+        this.doDestroy();
+      }
     },
 
     setExpectedState(expectedState) {