[Vuejs]-How can I pagination with bootstrap-vue?

0๐Ÿ‘

<template>
    <div>
      <b-pagination
        v-model="currentPage"
        :total-rows="totalRows"
        :per-page="perPage"
        :limit="limit"
        align="center"
        class="pagination"
      ></b-pagination>
    </div>
  </template>
  
  <script>
  export default {
    data() {
      return {
        currentPage: 1,
        totalRows: 33,
        perPage: 5,
        limit: 3,
      };
    },
  };
  </script>
  

Leave a comment