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

1. el-table中加上ref属性


2.在updated生命周期函数

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

你可能感兴趣的:(ui,elementui,vue.js)