lokyoung / vuejs-paginate

A Vue.js(v2.x+) component for creating pagination.
MIT License
779 stars 171 forks source link

Option to always display the same number of page options #127

Open luukvnes opened 3 years ago

luukvnes commented 3 years ago

Right now the page options move if you go to the next page, because there are more options.

[prev, 1, (2), 3, .. , end, next] (count = 7) -> [prev, 1, 2, (3), 4, .. , end, next] (count = 8).

This cause the pagination to shift around awkwardly.