We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug: scrollToBottom可能会导致无限循环执行,导致列表一直在底部无法向上拉
tangbc/vue-virtual-scroll-list@feb2135
setTimeout(() => { if (this.getOffset() + this.getClientSize() < this.getScrollSize()) { this.scrollToBottom() } }, 3)
应该改为
setTimeout(() => { if (this.getOffset() + this.getClientSize() + 1 < this.getScrollSize()) { this.scrollToBottom() } }, 3)
The text was updated successfully, but these errors were encountered:
可以在自己的项目里这样写,不必去改他的源码
Sorry, something went wrong.
No branches or pull requests
bug: scrollToBottom可能会导致无限循环执行,导致列表一直在底部无法向上拉
tangbc/vue-virtual-scroll-list@feb2135
应该改为
The text was updated successfully, but these errors were encountered: