Level 104
this.$store is undefined. Are you using Vue 3 and Vuex 4 with the Composition API; use useStore instead?
https://vueblocks.github.io/vue-use-utilities/guide/vuex/useStore.html#vuex-4
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
in my actions.js I think this line is failing:
this.$store.dispatch("auth/" + USER_ACTION, response.data.user);
I did originally write it like this:
this.$store.dispatch(`auth/${USER_ACTION}`, response.data.user);
Please or to participate in this conversation.