【发布时间】:2019-12-18 22:43:05
【问题描述】:
在我的反应组件中有来自react-component/tree的以下代码,
import Tree from 'rc-tree';
...
<Tree
className="treeThingy"
treeData={myTreeData}
/>
这行得通,但是打字稿抱怨 treeData 道具在 Tree 上不存在,如下所示,
类型“IntrinsicAttributes & IntrinsicClassAttributes & Readonly & Readonly'.ts(2322)
这是我的代码、rc-tree 代码还是其他什么问题?
【问题讨论】:
标签: typescript react-component