let $box = $('.el-table__body-wrapper'); //这里是jq获取表格的class,现在想用vue的ref替换,但是不知道ref加在哪里
最后需要调用方法
this.tableScrollTop = $box.scrollTop();
this.tableScrollLeft = $box.scrollLeft();
如果不在table上添加ref一层层找,该怎么办
ref节点里面有个bodyWrapper对象,里面就有scrollTop属性,
let $box = this.$refs.treeTable.bodyWrapper;
this.tableScrollTop = $box.scrollTop;
this.tableScrollLeft = $box.scrollLeft;
搞定了
HTML結構貼出來吧