为什么绑定到组件属性的文字对象的嵌套字段没有反应和观察?
例子:
<my-comp :my-prop="{ my: { literal: { object: { with: { nested: { field: ‘not reactive’ }}}}}}"></my-prop>
当您在 my-comp 中执行此操作时:
created() {
console.log(this); // you can see in the Chrome console that nested fields of this.myProp do not get reactive (i.e. no getters)
}
我知道我可以玩它,但我只是问为什么不呢?有没有一种巧妙的方法使它具有反应性?
谢谢!