vue-infinite-scroll icon indicating copy to clipboard operation
vue-infinite-scroll copied to clipboard

infinite-scroll-disabled取vue的computed值不工作

Open yuyongyu08 opened this issue 7 years ago • 1 comments

html: <div v-infinite-scroll="loadMore" infinite-scroll-disabled="cannotLoad" infinite-scroll-distance="10">

js: computed: { cannotLoad: function () { return (this.data.length == this.totalCount) && this.busy } }

yuyongyu08 avatar Jul 25 '18 08:07 yuyongyu08

infinite-scroll-disabled="cannotLoad" 改成 : infinite-scroll-disabled="cannotLoad" cannotLoad传入特定类型数据

gottayan avatar Oct 29 '18 05:10 gottayan