在table中添加行 滚动条自动滚动到最后一行
let tableScroll = document.querySelectorAll('.tableScroll')//获取table
this.$nextTick(() => {
console.log(tableScroll)
for(let i=0; i<tableScroll.length; i++){
//在滚动条出现的地方设置scrollTop值为scrollHeight
tableScroll[i].children[2].scrollTop = tableScroll[i].children[2].scrollHeight
}
})