[Solved] Split list item and show in multiple pages inside table [closed]
If you want your own implementation you can filter your list of items and split it into subarrays based on how many items you want in one page. Below is an example code on how to achieve that. Example component’s contents: data() { return { currentPage: 1, itemsPerPage: 3, items: [{id: 1, title: ‘test1’},{id: 2, … Read more