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
Firing with each scroll regardless of page height.
<template> <div class="business-list-wrapper"> <div class="dd" v-infinite-scroll="loadMore" infinite-scroll-disabled="busy" infinite-scroll-distance="5"> <div v-for="(d, i) in data" :key="i" style="height:300px" > {{ d.name }} </div> </div> </div> </template> <script> let count = 0; export default { data() { return { data: [], busy: false } }, methods: { loadMore: function() { this.busy = true; setTimeout(() => { for (var i = 0, j = 10; i < j; i++) { this.data.push({ name: count++ }); } this.busy = false; }, 1000); } } } </script>
The text was updated successfully, but these errors were encountered:
I'm facing the same issue, loadMore is getting infinitely called.
Sorry, something went wrong.
Same here
@Leopoldthecoder Please assign this issue to me. I'm trying to resolve this.
I'm facing the same issue here also, loadMore method is getting infinity called.
No branches or pull requests
Firing with each scroll regardless of page height.
The text was updated successfully, but these errors were encountered: