better-scroll使用无效的问题
来源:8-13 (新)细节优化
好学的皓明
2020-09-01
代码如下
word () {
const elem = this.$refs[this.word][0]
if (this.word) {
this.scroll.scrollToElement(elem)
}
}
在watch中监听word的变化,打印elem和word都是正常的,但是scrollToElement并没有跳转到正确的位置,这是什么原因呢?
写回答
2回答
-
加个生命周期勾子函数试试,
updated () {
this.scroll.refresh();
this.scroll.finishPullUp();
},
212020-09-05 -
Dell
2020-09-04
代码有报错吗
012020-09-05
相似问题