摘抄自:https://blog.csdn.net/lynxkor/article/details/78069661
element ui table 添加数据行后滚动条滚动到对应的行头或行尾问题;
各搜索引擎搜了好久都没有找到相对有效的方法;
后来经过分析发现其实是一件非常简单的事儿;
以下为最后的解决方法,非常的简单,方便;
滚动到第一行:
this.$refs.table.bodyWrapper.scrollTop =0;
滚动到最后一行:
this.$refs.table.bodyWrapper.scrollTop =this.$refs.table.bodyWrapper.scrollHeight;