Releases: TahaSh/vue-paginate
Releases · TahaSh/vue-paginate
v3.6.0
v3.5.0
v3.4.0
Main changes:
- Support adding next/prev links to full and limited links using step links
- You can now customize those step links using
:step-links
prop - You can hide the paginatedLinks if it has a single page using hide-single-page prop
Changes list:
- #31 Fix adding multiple classes to PaginateLinks ul element
- #27 Make next/prev links modifiable
- #34 Add the ability to hide links if there's only one page
- #33 Introduce step-links property that allows you to add next/prev links to move one page at a time instead of chunks
- Make step links optional in limited links (which you can add using
:show-step-links="true"
prop).
v3.3.1
Allow multiple additional classes
This release allows adding multiple classes to PaginateLinks
by using an array of class names. For example:
<paginate-links
for="languages"
:simple="{
prev: 'Back',
next: 'Next'
}"
:classes="{
'.prev > a': ['first-class', 'second-class'] // multiple classes
}"
></paginate-links>
Support adding additional classes to PaginateLinks
You can now add additional classes to any element in your PaginateLinks components. Check the docs for details.