Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 of 中的按钮打开一个存在于父组件中的MenuList模式react-select。我用我的按钮创建了一个自定义MenuList并将其传递给react-selectas <Select components={{ MenuList }} />。我不确定如何处理该按钮的单击事件以触发我的模式。
MenuList
react-select
<Select components={{ MenuList }} />
我的代码在这里:https ://codesandbox.io/s/rllz53k8ln
在 MenuList 组件的道具中,您有一个名为“selectProps”的对象。无论您传递给 Select 组件本身的任何自定义道具都可以通过该“selectProps”对象访问。
这是代码:https ://codesandbox.io/s/9325wk90pr