el-scrollbar中el-table的scrollToRow
```javascript
scrollToRow() {
if (this.currentRowIndex === 0) {
return
}
const index = this.currentRowIndex
this.$nextTick(() => {
const tableBodyWrapper = this.$refs.tableRef.$el.querySelector('.el-table__body-wrapper')
if (tableBodyWrapper) {
more...


