[Vuejs]-RangeError: Maximum call stack size exceeded and [Vue warn]: Error in v-on handler: "RangeError: Maximum call stack size exceeded"

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,
      });
    },
  },

Leave a comment