属性'autoFocus'在类型'IntrinsicAttributes&IntrinsicClassAttributes <上不存在

时间:2018-11-11 19:14:28

标签: reactjs button react-component

使用组件:

<SampleComponent defaultSelectId="AL" autoFocus={true} />

组件定义:(注意:道具不包含“ autoFocus”)

interface IProps extends React.Props<any> { defaultSelectId?: string | number; } 

export class SampleComponent extends React.PureComponent<IProps, IState> { .... render() { 


return (
      <button

        {...props}
      />
 )};

}

错误:类型'IntrinsicAttributes&IntrinsicClassAttributes&Pick&Readonly,never>&Partial&Readonly <...>,“ children”

不存在属性'autoFocus'

注意:在我更新打字稿之前,它工作得很好。由于autoFocus是button中可用的属性,因此我不想在props界面中添加它。

0 个答案:

没有答案