当前位置: 代码迷 >> 综合 >> vscode 前端警告记录解决
  详细解决方案

vscode 前端警告记录解决

热度:72   发布时间:2023-12-26 01:57:43.0

1.  propType [name] is not required, but has no corresponding defaultProp declaration

 原因:没有设置 defaultProp 默认值。

UploadImageList.defaultProps = {value: [],onChange: () => { },
}
UploadImageList.propTypes = {value: PropTypes.array,onChange: PropTypes.func,
}