- 当table设置heigh属性时, 希望表格添加行数时,能显示最后底部数据(即表格滚动条,滚动到最底部)
- 解决方法
const tableListRef = ref();
let table = tableListRef.value.layout.table.refs;
// 获取表格滚动元素
let tableScrollEle = table.bodyWrapper.firstElementChild.firstElementChild;
// 设置表格滚动的位置
tableScrollEle.scrollTop = tableScrollEle.scrollHeight;