props 的 default 是对象和数组

Props & PropType

1
2
3
4
5
6
7
props: {
editServiceConfig: {
type: Object as PropType<ServiceItem>,
required: false,
default: () => {}
}
}

PropType

  • 为了类型推论

Props 的 默认值

  • 对象或数组的 default 必须从一个工厂函数获取
  • props 会在一个组件实例创建之前进行验证,所以实例的属性 (如 data、computed 等) 在 defaultvalidator 函数中是不可用的。
文章目录
  1. 1. Props & PropType
    1. 1.1. PropType
    2. 1.2. Props 的 默认值