新的ReactJS文档指出ReactComponentElement
包含
type ReactComponentElement<TProps> = {
type : ReactClass<TProps>,
props : TProps,
key : string | boolean | number | null,
ref : string | null
};
但是当我查看createElement
的回复时,我看不到props
,而是_store.props
。这是文档错误吗?
答案 0 :(得分:1)
不,这不是错误:
props
属性是元素API的重要组成部分。