Vue 组件 Props 类型及默认值

refArr: {
type: Array,
default: () => {
return []
}
},
refFun: {
type: Function,
default: () => () => {}
},
refObj: {
type: Object,
default: () => ({}) //这里是注意是括弧,必须是括弧。
}

猜你喜欢

转载自www.cnblogs.com/sexintercourse/p/13161403.html