router vue-table/src/components/VuetablePagination.vue line 10 The word prev is spelled with the word next by mistake ``` <i v-if="icons.next != ''" class="{{icons.prev}}"></i> ``` should be ``` <i v-if="icons.prev != ''" class="{{icons.prev}}"></i> ```