Bscroll 无法滚动
来源:10-3 Vue项目的联调测试上线 - 真机测试
叩懿
2020-10-13
城市列表里面遇到 Bscroll 无法滚动问题.
不过我解决了,原来的代码是写在 mounted 里面的,由于页面加载的问题, Bscroll 先加载了,导致无法滚动.
后来我把初始化写在了 updated 里面问题就解决了
updated () {
this.scroll = new Bscroll(this.$refs.wrapper, {
click: true
})
},
mounted () {
// console.log(‘hot’, this.hot)
}
我想问问,这样子会不会产生什么问题?
写回答
2回答
-
不要这么写,再updated 里面 调用 this.scroll.refresh 方法才是正解
012020-11-02 -
Samrtiboy
2020-10-13
同学你好,你写在updated生命周期函数里进行切换城市会有报错的。
00
相似问题