npmi-Sprop-types #在组件中导入 importPropTypesfrom'prop-types' #函数组件 functionApp(){} // 验证规则 App.propTypes={ prop-name:PropTypes.string } #类组件 classAppextendsComponent{ } App.propTypes={ prop-name:PropTypes.string } 💞约束类型 https://zh-hans.reactjs.org/docs/typechecking-with...