Dafrok / vue-iscroll-view

IScroll-view component for Vue 2.x
https://dafrok.github.io/vue-iscroll-view
MIT License
148 stars 26 forks source link

可以执行pullup,scrollStart,但无法执行pullDown #6

Closed manwuyu closed 7 years ago

manwuyu commented 7 years ago

我发现问题了,是因为我这边的数据加载,应该是我这边数据加载完成后再执行你的方法,在watch中,执行this.$refs.scrollView.refresh()就可以了

Dafrok commented 7 years ago

文档有写。搜索 Call IScroll instance functions 小节,调用实例方法 refresh

Dafrok commented 7 years ago

另外 pullUppullDown 事件的处理存在一些争议,因为它不是 iscroll 的原生事件,为了兼容性目前仅做了最简单的判断和处理。iscroll-probe 的上下拉行为可以处理的更细腻,但需要手动实现。详细请参考 IScroll 的文档。

http://iscrolljs.com/#custom-events

manwuyu commented 7 years ago

多谢提醒,已经完成