ElemeFE / vue-infinite-scroll

An infinite scroll directive for vue.js.
2.85k stars 416 forks source link

function calls continuously when it reachs the bootom of the viewport #129

Open SIDDU-FED opened 5 years ago

SIDDU-FED commented 5 years ago

function calls continuously when it reachs the bootom of the viewport image

peltronic commented 3 years ago

Make sure there are no parenthesis on loadMore function...that is:

Correct: <div v-infinite-scroll="loadMore" infinite-scroll-disabled="busy" infinite-scroll-distance="10">

Not correct and may cause the behavior you are seeing: <div v-infinite-scroll="loadMore()" infinite-scroll-disabled="busy" infinite-scroll-distance="10">