vue pagination I have done an custom search witch works fine, i need to add pagination now, any good examples for pagination ? im new with Vue
I have an read() method, how can i implement the pagination with my read() method ?
read() {
axios.get('/api/jobs').then(({ data }) => {
//console.log(data)
this.jobs = data;
})
.catch((err) => console.error(err));
},
I don't know how to implement an pagination component with my read() method. I can find the components too, im interested how to implement them with my method!
If you don't know don't comment!
@pardeepkumar i don't need to create an extra table for that man too.
Please sign in or create an account to participate in this conversation.