場景:我的表格列表地方有做重置的按鈕。重置時,排序狀態,及高這樣式應當清除掉
第一步:增加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