关于前端:eltable表格固定列错位

64次阅读

共计 197 个字符,预计需要花费 1 分钟才能阅读完成。

解决:应用 el-table 提供的 api 里的 doLayout
doLayout:
对 Table 进行从新布局。当 Table 或其先人元素由暗藏切换为显示时,可能须要调用此办法

用法:每次 el-table 数据变更后调用 doLayout

<el-table :data="table" ref="myTable" >

this.$nextTick(() => {this.$refs.myTable.doLayout()
})

正文完
 0