项目开发中Element踩过坑

1.element table show-summary合计行不显示问题

1. el-table中加上ref属性



2.在updated生命周期函数

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

你可能感兴趣的:(项目开发中Element踩过坑)