I am using vuex and vuejs 2 together.
vuex
vuejs 2
I am new to vuex, I want to watch a store variable change.
store
I want t
I think the asker wants to use watch with Vuex.
this.$store.watch( (state)=>{ return this.$store.getters.your_getter }, (val)=>{ //something changed do something }, { deep:true } );