Invalid default value for prop "value": Props with type Object/Array must use a factory function to return the default value.(百度翻译:PROP“值”的默认缺省值:Type对象/数组的PROPS必须使用工厂函数返回默认值.) props default 数组/对象的默认值应当由一个工厂函数返回…
export default {props: { slides:{ type:Array, default:[] } },这是我的代码 报错是Invalid default value for prop "slides": Props with type Object/Array must use a factory function to return the default value. // 数组/对象的默认值应当由一个工厂函数返回 // 这是文档里的例子,返回对象 propE:…
export default {props: { xAxisData: { type: Array, default: [] }, },这是我的代码 报错是Invalid default value for prop "slides": Props with type Object/Array must use a factory function to return the default value. // 数组/对象的默认值应当由一个工厂函数返回 propE: { t…