petritr's avatar
Level 15

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

0 likes
4 replies
petritr's avatar
Level 15

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!

Please or to participate in this conversation.