参考链接 https://reactjs.org/docs/typechecking-with-proptypes.html
引入 PropTypes from ‘prop-types’
组件传值 类型 校验
childConponent.propTypes = {
count: PropTypes.oneOfType([PropTypes.string,PropTypes.number]) // count 可以是字符串 或 数字
content : PropTypes.string,
list:PropTypes.func,
test:PropTypes.string.isRequired // test 是字符串 且必传
}
组件传值 类型 定义默认值
childConponent.defaultTypes = {
test: '大师兄' // 如果父组件没传 test 默认 值为 大师兄
}
来源:CSDN
作者:大狮兄x
链接:https://blog.csdn.net/Cris_are/article/details/103928768