update Table
This commit is contained in:
parent
67c9b1c8b9
commit
a6eee4e568
1 changed files with 4 additions and 1 deletions
|
@ -665,7 +665,10 @@
|
||||||
this.$nextTick(() => this.ready = true);
|
this.$nextTick(() => this.ready = true);
|
||||||
window.addEventListener('resize', this.handleResize, false);
|
window.addEventListener('resize', this.handleResize, false);
|
||||||
this.$on('on-visible-change', (val) => {
|
this.$on('on-visible-change', (val) => {
|
||||||
if (val) this.handleResize();
|
if (val) {
|
||||||
|
this.handleResize();
|
||||||
|
this.fixedHeader();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
beforeDestroy () {
|
beforeDestroy () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue