ratiw / vue-table

data table simplify! -- vuetable is a Vue.js component that will automatically request (JSON) data from the server and display them nicely in html table with swappable/extensible pagination component.
MIT License
1.83k stars 303 forks source link

The word prev is spelled with the word next by mistake #191

Open IdeaEcho opened 5 years ago

IdeaEcho commented 5 years ago

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>