vuewarnInvaliddefaultvalueforpropxx:PropswithtypeObject/Array解决bug翻译的意思:属性xx的默认值无效:属性类型为Object/Array简而言之:就是默认ofprops格式有问题正如vue官网styleguide中解释的:object和array的接收格式都是functions的形式:props:{changeData:{type:Object,//默认值对象或数组必须从工厂函数中获取default:()=>{return{}}}},array:props:{changeData:{type:Array,default:()=>[],},}
