当前位置:   article > 正文

react TypeScript属性 ’props’, 'state'不存在_类型“{}”上不存在属性“togglesidebar”。ts-plugin(2339)

类型“{}”上不存在属性“togglesidebar”。ts-plugin(2339)

我有这个.tsx文件

 

 

  1. 我有这个.tsx文件
  2. import React, { Component } from 'react';
  3. export class SidebarItem extends Component {
  4. constructor (props) {
  5. super(props);
  6. }
  7. render () {
  8. return (<li>{this.props.children}</li>);
  9. }
  10. }
  11. 但是,TypeScript会抛出此错误:
  12. 错误TS2339:类型’SidebarItem’上不存在属性’props’.
  13. 解决方案是安装React Types定义
  14. yarn add -DE @types/react

但是,TypeScript会抛出此错误:
错误TS2339:类型’SidebarItem’上不存在属性’props’.

解决方案是安装React Types定义

 

 

yarn add -DE @types/react
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/777634
推荐阅读
相关标签
  

闽ICP备14008679号