DEV Community

Discussion on: Vue watchers vs computed properties

Collapse
 
mburszley profile image
Maximilian Burszley • Edited

Watchers are meant to react to other properties changing or events. In general, you should default to computed properties for the caching benefits.

vuejs.org/v2/guide/computed.html#C...