瀏覽代碼

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) {