[Vuejs]-Server-side pagination and search with Vuetify <v-data-table>

0👍

You committed

commit('SET_PAGINATION', response.data.page)

But didn’t use page in SET_PAGINATION, Could change to :

SET_PAGINATION(state, page){
  state.options.page = page 
}

Leave a comment