报错截图:
在这里插入图片描述
代码:
src/Child.tsx

type ChildProp = {
    count?: number
}

const Child: React.FC<ChildProp>= ({ count }) => {

    return <h3>{count}</h3>
}

export default Child;

原因是eslint在使用了"plugin:react/recommended"react检查时,会使用prop-types规则进行检查,在项目中使用的是ts,我们不会去引入prop-types去声明数据类型,所以会报错。这里有两种处理方法:

方法一

对组件和props都做类型声明

type ChildProp = {
    count?: number
}

const Child: React.FC<ChildProp>= ({ count }: ChildProp) => {

    return <h3>{count}</h3>
}

export default Child;

方法二
这是一劳永逸的做法。在eslint中,会默认使用react/prop-types检查,我们把它关掉就好了。
.eslintrc.js

"overrides": [
    {
        files: ["**/*.tsx"],
        // react默认使用prop-types来检查类型
        // 如果使用了typescript,就把这个关掉,
        // 不然会报一些没有意义的错误
        rules: {
            "react/prop-types": "off"
        }
    }
]
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐