lokyoung / vuejs-paginate

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

Pagination on Bulma #46

Closed barbierizimmermann closed 7 years ago

barbierizimmermann commented 7 years ago

Hello, how use correctly with Bulma Framework? The Paginate component listem click only if Click exactly in number inside button, if click in some location of button not listem clickhandler.

my code:

`

lokyoung commented 7 years ago

Hello @barbierizimmermann . Sorry for reply so late, i'm so busy these days. Could you please try no-li-surround. So you can directly add pagination-link on the a tag.

eg.

<paginate
  :page-count="10"
  :no-li-surround="true"
  :page-link-class="'pagination-link '"
>
</paginate>
barbierizimmermann commented 7 years ago

Hello @lokyoung, after changes it's work fine. Thank you very much again!