網(wǎng)上說的
滾動到第一行:(對我的表格往后翻頁都有效 就是第一頁不行)
this.$refs.table.bodyWrapper.scrollTop =0;
ps:這里有點傻了族沃,只想著復制粘貼犀被,其實這里在表格上還要加上ref = "table"屬性,不然不生效
滾動到最后一行:(沒試過)
this.$refs.table.bodyWrapper.scrollTop =this.$refs.table.bodyWrapper.scrollHeight;
我最后用JQ解決的
$('#table .el-table__body-wrapper').scrollTop(0); //滾動條置頂
我試了一下沒問題(JQ大法好啊和敬,/笑哭)