场景:我的表格列表地方有做重置的按钮。重置时,排序状态,及高这样式应当清除掉

第一步:增加ref="table"

<el-table
      :max-height="'700px'"
      @sort-change="sort"
      ref="table"
      :data="collectLoanOrderList">

 第二步:

reset() {
   this.$refs.table.clearSort(); 
}

  

参考文章

https://blog.csdn.net/weixin_42556438/article/details/107366680

相关文章:

  • 2021-09-03
  • 2022-12-23
  • 2021-04-04
  • 2021-12-11
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案