一、js部分
wacth:{
equipSet() {
this.$nextTick(() => {
this.$refs.tableList.bodyWrapper.scrollTop=this.$refs.tableList.bodyWrapper.scrollHeight;
});
},
}
二、html部分
<el-table
:data="equipSet"
border
height="192"
ref="tableList"
>
<el-table/>
表格ref标记 ,watch里监听表格数据。