0👍
I think the problem is in you’re AdicionarNota component, you have a method named adicionarNota calling a vuex action with the same name (adicionarNota), try to change the name of you’re method :
methods: {
...mapActions(["adicionarNota"]),
adicionarNota() {
this.adicionarNota({
id: this.id,
nota: this.nota,
});
},
},
Source:stackexchange.com