Answer the question
In order to leave comments, you need to log in
How to track Vuex state change from Vue component?
Hey! There is vuex divided into modules. The messenger module has
const state = {
messages: []
}
Answer the question
In order to leave comments, you need to log in
computed: {
todos: () {
return this.$store.getters.getTodos
}
}
getters: {
getTodos: state => state.todos
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question