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
}
Source:stackexchange.com
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
}