Answer the question
In order to leave comments, you need to log in
How to implement laravel+vue infinite scroll?
Hello. How to implement infinite scrolling in my project? On the client, I make a get request:
FetchData(){
axios.get('/api/crud')
.then(res=>{
this.contents = res.data;
})
.catch(err=>{
console.log(err.res);
});
}
public function index()
{
$show = Content::orderBy('id','desc')->get();
return response()->json($show);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question