使用Vue2+iscroll5,初始化可以完成,但是用谷歌浏览器手机模式根本无法滑动,非手机模式下滑动正常。
完全按照官方示例的代码如下:
import IScroll from 'iscroll';
export default {
name: 'app',
data() {
return {
msg: []
}
},
mounted: function() {
this._initScroll();
},
methods: {
_initScroll() {
this.iscroll = new IScroll(this.$refs.wrap);
}
},
components: {}
}