6种props类型:字符串、数字、布尔值、数组、对象、函数
props: {
StringValue: {
type: String,
default: ''
},
NumberValue: {
type: Number,
default: 0
},
BooleanValue: {
type: Boolean,
default: true
},
ArrayValue: {
type: Array,
default: () => []
},
ObjectValue: {
type: Object,
default: () => ({})
},
FunctionValue: {
type: Function,
default: function () { }
}
}
对象原始形式
demoObject: {
type: Object,
default: function () {
return {}
}
}