diff --git a/src/components/table/table.vue b/src/components/table/table.vue
index 1505967..81257e4 100644
--- a/src/components/table/table.vue
+++ b/src/components/table/table.vue
@@ -665,7 +665,10 @@
             this.$nextTick(() => this.ready = true);
             window.addEventListener('resize', this.handleResize, false);
             this.$on('on-visible-change', (val) => {
-                if (val) this.handleResize();
+                if (val) {
+                    this.handleResize();
+                    this.fixedHeader();
+                }
             });
         },
         beforeDestroy () {
--
libgit2 0.21.4