Problem Statement
When should you use watch() instead of computed()?
Explanation
Use watch for side effects that happen when data changes (fetching, debouncing, saving to localStorage, logging). Use computed for deriving new values for the view. watch doesn’t return a value to render; it performs effects.