The total row of the Element table entry page is not displayed

Just set ref="table" to the table, and execute the following method in the Vue life cycle updated

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

Guess you like

Origin blog.csdn.net/weixin_44640323/article/details/109443287