Explorar el Código

Tabs: fix auto scroll bug (#13696)

iamkun hace 6 años
padre
commit
f7241f62ef
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      packages/tabs/src/tab-nav.vue

+ 3 - 0
packages/tabs/src/tab-nav.vue

@@ -268,6 +268,9 @@
       document.addEventListener('visibilitychange', this.visibilityChangeHandler);
       window.addEventListener('blur', this.windowBlurHandler);
       window.addEventListener('focus', this.windowFocusHandler);
+      setTimeout(() => {
+        this.scrollToActiveTab();
+      }, 0);
     },
 
     beforeDestroy() {