vue组件props数组对象传参的默认值
在组件中接受props参数时,如果接受的是数组或对象类型,则default值应该用一个方法return返回否则报错:Invalid default value for prop “slides”: Props with type Object/Array must use a factory function to return the default valueprops: {parentlis
·
在组件中接受props参数时,如果接受的是数组或对象类型,则default值应该用一个方法return返回
否则报错:
Invalid default value for prop “slides”: Props with type Object/Array must use a factory function to return the default value
props: {
parentlistAr: {
type: Array,
default: () => []
},
parentObj: {
type: Object,
default: () => ({})
}
},
更多推荐
已为社区贡献1条内容
所有评论(0)