Browse Source

Tabs: fix auto scroll bug (#13696)

iamkun 6 years ago
parent
commit
f7241f62ef
1 changed files with 3 additions and 0 deletions
  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() {