Say I have a component that is loaded with data from an initial API call inside mounted().
Any further changes to a state variable will not be reflected in the component since the first API call is inside mounted.
Can we use watcher to deal with this?
For Example,
JavaScript
x
14
14
1
data() {
2
return {
3
someVariableInStore: this.$store.state.test,
4
variableThatUpdatesTheComponent: ""
5
},
6
7
watch: {
8
someVariableInStore(){
9
// Based on someVariableInStore run a function that updates variableThatUpdatesTheComponent
10
someFunction();
11
}
12
}
13
14
Is there a better way of doing this if not the above solution ?
Advertisement
Answer
The correct approach in this case is to use a computed property. Instead of manually calling the update function, let Vue call it for you:
JavaScript
1
7
1
computed: {
2
variableThatUpdatesTheComponent() {
3
// The logic of `someFunction()` can go here
4
return this.$store.state.test + "foo";
5
}
6
}
7