Hey everyone, I'm currently working on a Vue project with Vuex using decorators for strong typing in my template.
As someone new to the concept of stores, I am struggling to understand how to properly configure my store to work as expected in my components.
My end goal is to be able to call the actions and getters of my different store modules like this:
this.$store.nameOfMyModule.NameOfAction
this.$store.<nameOfMyModule.NameOfGetter
An example specific to my project would be:
this.$store.tickets.tickets
this.$store.tickets.fetchTickets
Here is the link to the repository.