0👍
✅
Your startIndex & endIndex are set to the same value when you go back to the minimum value from a larger value. So the condition in <tr ..... v-if="index >= startIndex && index < endIndex">
fails and no records are displayed. Simply reset the pagination to the first page so the indexes are re-calculated.
showEntries: function (value) {
this.endIndex = value;
this.pagination(1);
}
Source:stackexchange.com