I am retrieving the data from API. But I can't assign that object to the state object in vuex.
HERE IS MY STATE OBJECT
state: {
calendarOptions:[],
}
how will I assign data to calendarOptions by api call?
And in My Action
actions: {
//some api call, and its response
this.state.calendarOptions = response.data
}
i need something like this ?