npm install prop-types安装一个叫prop-types的第三方包
import PropTypes from 'prop-types'//引入第三方包
//验证传递过来的值
TodoItem.propTypes = {
test:PropTypes.string.isRequired,//isRequired表示该值必须要传
list:PropTypes.oneOfType([PropTypes.number,PropTypes.string]),//oneOfType可以验证多个值必须要用[]括起来
deleItem:PropTypes.func,//检测函数(Function类型)
idx:PropTypes.number//检测数字
}
//defaultProps设置默认值
TodoItem.defaultProps={
test:'hello world'
}