Question 14
Which one of the following statements about Vuex is correct?
Getters are used to modify the store’s state and must be synchronous.
Mutations are the only way to directly modify Vuex state, and they should be synchronous.
Actions directly modify state and must not return Promises.
You can call mutations asynchronously (e.g., use setTimeout inside a mutation) without side effects.