其他分享
首页 > 其他分享> > Vue错误——Property or method "toJSON" is not defined on the instance but referenced during re

Vue错误——Property or method "toJSON" is not defined on the instance but referenced during re

作者:互联网

有点小坑 注意点 根实例化上不可以console.log 开启vconsole会报错哒!!!       1开启vconsole 报toJSON is defiend定位问题在console.log() 将它注掉就不报错了        2如需输出这个东西 请找个随便什么地方定义它toJSON(){} 虽然不报错了但不知道有没有什么问题       3不开启vconsole没有这个bug       4不需要的时候注释掉 出现问题原因 官网的解释为 由于 Vue 不允许动态添加根级响应式属性,因此您必须通过预先声明所有根级响应式数据属性来初始化 Vue 实例,即使值为空: 官网链接 https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties

标签:Vue,console,render,defined,官网,vconsole,报错,toJSON
来源: https://www.cnblogs.com/grue/p/14999705.html