0👍
I think @birdspider answered your question. In your Vue.js templates you referencing to Vuex store like this this.$store.state.blabla
instead of $store.state.blabla
. This happen because this
keyword in template is undefined. When you access your variables in template you have to dont use like {{this.variable}}
, just {{variable}}
, declared in data()
setction.
Source:stackexchange.com