[Vuejs]-Why Vue watch doesnt work in case with raw object but works from function

-1👍

did you set up the watcher with a deep flag?

https://vuejs.org/guide/essentials/watchers.html#deep-watchers

it may be that the reference for the object itself it’s not mutating but the elements inside of it are not being tracked for changes.

Leave a comment