UNPKG

bootstrap-vue

Version:

BootstrapVue provides one of the most comprehensive implementations of Bootstrap 4 components and grid system for Vue.js and with extensive and automated WAI-ARIA accessibility markup.

36 lines (24 loc) 952 B
<div id="app"> <div> <h6>Default</h6> <b-pagination size="md" :total-rows="100" v-model="currentPage" :per-page="10"> </b-pagination> <br><br> <b-pagination size="md" :total-rows="100" v-model="currentPage" :limit="10" :per-page="10"> </b-pagination> <br><br> <b-pagination :total-rows="100" v-model="currentPage" :limit="5" :per-page="10"> </b-pagination> <br><br> <b-pagination disabled :total-rows="100" v-model="currentPage" :per-page="10"> </b-pagination> <br><br> <b-pagination hide-elipsis :total-rows="100" v-model="currentPage" :limit="4" :per-page="10"> </b-pagination> <br><br> <b-pagination hide-goto-end-buttons :total-rows="100" v-model="currentPage" :limit="4" :per-page="10"> </b-pagination> <br><br> <div>currentPage: {{currentPage}}</div> </div> </div>