airyland / vux

Mobile UI Components based on Vue & WeUI
https://vux.li
MIT License
17.59k stars 3.71k forks source link

使用scoller在transition中使用问题 #2006

Closed luhf closed 7 years ago

luhf commented 7 years ago

使用scoller在transition中切换的时候会产生页面闪烁漂浮,感觉是在进入下一个页面的时候scoller的top先恢复成0在进入下一个页面。

airyland commented 7 years ago

抱歉,该组件已经不再维护,建议使用社区其他 scroller 类似组件。

mrzhouxu commented 7 years ago

我刚才也遇到这个问题了,多个scroller之间切换的时候页面漂浮。找了一下午没有什么好的解决办法。 最终这样,感觉勉强能用,不知道还有没有更好的解决办法:
tabbar_change(value){ this.tabbar_val = value this.$nextTick(() => { this.$refs.scroller.reset({ top: 0 }) }) },