Problem Statement
How do you watch multiple sources at once?
Explanation
Pass an array of sources to watch. The callback receives arrays of new and old values in the same order. Sources can be refs, computed, or getter functions.
Code Solution
SolutionRead Only
watch([() => route.params.id, filters], ([id, fNew], [prevId, fOld]) => {
fetchList(id, fNew)
})