Oct 1, 2018
0
Level 15
Add pagination to my vue component
I have an component where i can search and display records:
<input class="search ml-2" type="search" placeholder="Search" v-model="search">
....
<tr v-for="job in filteredList.slice(0, 10)">
....
....
</tr>
How can i add an numbered pagination ?
Please or to participate in this conversation.