Skip to content
Advertisement

Is it okay to use watch to keep track of store changes after initial mount?

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

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
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement