解决Element-ui table 添加了show-summary 但 合计不显示的问题

1. el-table中加上ref属性

<el-table
  ref="table1"
    border
  size="mini"
  show-summary >
</el-table>

2.在updated生命周期函数

updated () {
  this.$nextTick(() => {
    this.$refs['table1'].doLayout();
  })
},

猜你喜欢

转载自blog.csdn.net/qq_40861800/article/details/122963588
今日推荐