Vue2 props Object类型 默认值写法
2019-10-23 本文已影响0人
IamaStupid
写法:
props: {
dialogStyleVisible: {
type: Boolean,
default: false
},
colorForm: {
type: Object,
default:function () {
return {}
}
},
abc: [String, Object]
}