summaryrefslogtreecommitdiff
path: root/src/components/Mixins/BVPaginationMixin.js
blob: 84c46aa4d6a48b79e1f0946ba67c6e6b11f57e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const BVPaginationMixin = {
  data() {
    return {
      currentPage: 1,
      perPage: 20,
      itemsPerPageOptions: [
        {
          value: 10,
          text: '10'
        },
        {
          value: 20,
          text: '20'
        },
        {
          value: 30,
          text: '30'
        },
        {
          value: 40,
          text: '40'
        },
        {
          value: 0,
          text: this.$t('global.table.viewAll')
        }
      ]
    };
  },
  methods: {
    getTotalRowCount(count) {
      return this.perPage === 0 ? 0 : count;
    }
  }
};

export default BVPaginationMixin;