[pagination-nav] Docs
See original GitHub issueWhile using <b-pagination-nav> “input” event will work but will be triggered even on first mount. So I read the docs and found that “change” event will only be triggered when I need it.
But found out that “change” event doesn’t not fire at all.
I’m using this syntax on vue:
This is working:
<b-pagination-nav v-model="currentPage" :linkGen="linkGen" @input="changePage" :number-of-pages="totalPages"></b-pagination-nav>
This is not
<b-pagination-nav v-model="currentPage" :linkGen="linkGen" @change="changePage" :number-of-pages="totalPages"></b-pagination-nav>
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
Pagination Nav | Components - BootstrapVue
<b-pagination-nav> is a custom input component that provides navigational pagination. The total number of pages set with the number-of-pages prop.
Read more >Pagination - Bootstrap
Documentation and examples for showing pagination to indicate a series of related content exists across multiple pages.
Read more >Create a list of Navigation Links for your Pagination. — Eleventy
Paginating over an Array · Starter Example. Accessing the Original Paginated Content; Visually Style the Current Page Link · Add Previous and Next...
Read more >Pagination Nav - Infima
Pagination Nav ; a class="pagination-nav__link" href="#url"> ; a class="pagination-nav__link" href="#url"> ; a class="pagination-nav__link" href="#url"> ; div class ...
Read more >Pagination | Foundation for Sites 6 Docs
Pagination is a type of navigation that lets users click through pages of search results, products, or other related items.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Edduard I would suggest upgrading to v2.0.0-rc.20 and see if that helps your issue.
I believe the
change
event was added after rc.11