使用带有打字稿的 react-bootstrap Form.Label 时出现类型错误
Posted
技术标签:
【中文标题】使用带有打字稿的 react-bootstrap Form.Label 时出现类型错误【英文标题】:Type error while using react-bootstarp Form.Label with typescript 【发布时间】:2022-01-19 19:42:24 【问题描述】:我正在使用带有 typescript 的 react-bootstrap。
这是我遇到的错误
Property 'Label' does not exist on type 'typeof Form'
这是代码。请任何人建议我该如何解决它。
<div className = half ? "halfWidth" : "fullWidth" >
<Form.Label>lableText</Form.Label>
<FormControl
className='p-2 mb-2'
aria-label="Recipient's username"
aria-describedby="basic-addon2"
/>
</div>
【问题讨论】:
嗨@Sandip,你安装了类型吗? 【参考方案1】:您可以安装类型:
npm install --save @types/react-bootstrap
【讨论】:
以上是关于使用带有打字稿的 react-bootstrap Form.Label 时出现类型错误的主要内容,如果未能解决你的问题,请参考以下文章