Skip to content

Instantly share code, notes, and snippets.

@msilvoso
Created April 11, 2020 09:27
Show Gist options
  • Select an option

  • Save msilvoso/baba1e31122dc88ad18de79abc26714b to your computer and use it in GitHub Desktop.

Select an option

Save msilvoso/baba1e31122dc88ad18de79abc26714b to your computer and use it in GitHub Desktop.
<template>
<div>
<b-form-input v-model="contentFilter" placeholder="Filter"></b-form-input>
<b-table id="my-table" striped hover :items="items" :fields="fields" :sort-by.sync="sortBy"
:sort-desc.sync="sortDesc" :per-page="perPage"
:current-page="currentPage" :filter="contentFilter" @filtered="onFiltered"></b-table>
<p class="mt-3">Total Rows: {{ rows }}</p>
<div v-show="rows > pageLimit">
<div class="mt-1">
<b-pagination v-model="currentPage" pills :total-rows="rows" :per-page="perPage" :limit="pageLimit" aria-controls="my-table" first-number last-number size="lg"></b-pagination>
</div>
</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment