vue中实现滚动加载
loadMore(){ this.busy=true; // 延迟1s去请求数据 setTimeout(()=>{ // 应该是请求后台提供的接口数据 this.busy = true; for(let i=0;i<5;i++){ this.dataLst.push({ title:"h好好学习 天天向上啊"+i }); } this.busy = false; },1000); },
网页题目:vue中实现滚动加载
浏览路径:http://scpengxi.com/article/jehiod.html