Created
April 11, 2020 09:27
-
-
Save msilvoso/baba1e31122dc88ad18de79abc26714b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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