乐趣区

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

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

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

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

this.$nextTick(() => {this.$refs.myTable.doLayout()
})
退出移动版