Pagination component for Vue Bulma
npm install vue-bulma-paginationPagination component for Vue Bulma.
``sh`
$ npm install vue-bulma-pagination --saveor
$ yarn add vue-bulma-pagination --save
`vue
`Document
| props | required | default | optional | desc |
| ----------- | -------- | --------------------------| --------------------------- | -------------------------------- |
| urlPrefix | false | '/' | | urlPrefix for vue-router |false
| urlBuilder | | urlBuilder | | urlBuilder result will passed to vue-router link to prop |true
| currentPage | | 1 | | |true
| lastPage | | | | the last page number |false
| displayPage | | 4 | | page number will to be displayed |false
| modifiers | | '' | '','is-centered','is-right' | |false
| prev | | 'Prev' | | text of prev button |false
| next | | 'Next' | | text of next button |
as :to prop. See example below:
`vue
``

---