[Vuejs]-Bootstrap-vue <b-pagination> component not changing pages on click

7👍

You should still be using currentPage to choose which items to show. The b-pagination component only changes that number.

Try using this line:

<li v-for="(item, index) in items.slice(10*(currentPage-1),10*(currentPage))" :key="index">

Leave a comment