标签: reactjs event-handling antd
有人可以向我解释为什么在使用自定义按钮时没有执行下拉触发器吗?我在其他区域使用CustomButton时在哪里声明OnClick
答案 0 :(得分:0)
Dropdown的Antd传递了一个名为onClick的道具给子CustomButton,您需要将它传递给CustomButton内的按钮:
Dropdown
onClick
CustomButton
const CustomButton = props => { return <Button type={props.type} onClick={props.onClick}>{props.text}</Button>; };
Demo