I\'m trying to switch to using Vuex instead of my homegrown store object, and I must say I\'m not finding the docs as clear as elsewhere in the Vue.js world. Let\'s say I have a
Try this approach!
getCounter(){ return this.$store.getters['auth/getToken']; }
auth is my module name and getToken is my getter.
auth
getToken