外观
控制台提示:Avoid replacing instance root 原因:代码里写了data.Usenesteddatapropertiesinstead原因:代码里写了‘this.data = this.$options.data();`。 修改方案:
Object.assign(this.$data, this.$options.data());
注意事项:如果你的vue实例的data方法里通过this引用了其他vue实例上的方法/属性等,需要改成下面这样,修复this指向问题导致的报错。
Object.assign(this.$data, this.$options.data.call(this));