[Vuejs]-How to create load more in search result with vue js and laravel

0👍

just need a simple correction..

in search method change axios.post('/api/artist/search/', formData) to axios.post('/api/artist/search/' + this.$data.term)

and in paginatesearch method change axios.get to axios.post.

and some correction in controller page. now everything is working fine.

0👍

‘results’is defined as an array, but is used as an object.

Leave a comment