Under what circumstances will vue not trigger view updates

the source code is here: Source address

question:

Mar.02,2021
The

interface depends on the original object. You have a new object


.
the data object of the Vue instance. Vue will recursively convert the properties of data to getter/setter, so that the properties of data can respond to data changes.
The response of

data depends on the getter/setter, transformed by vue, and if you create a new object, it's only natural that it doesn't work.
https://cn.vuejs.org/v2/api/i.

Menu