[Vuejs]-Mutation committed but state not updated

0👍

Thats why you are destructuring a campaign var and passing a number to the mutations, not a object.

Try this

getCurrentCampaign (state, campaign) {
    state.currentCampaign = campaign
}

Leave a comment