[Component] property "title" of "components/order/status" received type-uncompatible value: expected <String> but get null value. Use empty string instead.
使用uniapp开发微信小程序时,使用组件会报错,props参数类型修改一下就可以了。追加一个null类型就可以了。
props: {
title: {
type: String | null,
default () {
return '';
}
}
},