When I want to update $auth.user.balance:
methods:{
test(){
this.$auth.user.balance = 10;
}
}
But it returns error:
Error: [vuex] do not mutate vuex store state outside mutation handlers.
How can I update these vuex properties in Nuxtjs?