活动时如何将“组件”传递到选项卡面板?
How to pass `component` into tab panel when active?
请向我解释如何在 antd
库中激活时将 component
传递到选项卡面板?示例组件 Productshoe
<Tabs defaultActiveKey="1">
<TabPane tab="productshoe" key="productshoe">
<Productshoe/>
</TabPane>
但是出错了
您在 TabPane 中的 key
与父项 Tabs
的键不匹配。尽量保持键值相同。如果添加更多选项卡,请保持键值唯一。
参考:Link
<Tabs defaultActiveKey="productshoe" onChange={callback}>
<TabPane tab="Tab 1" key="productshoe">
<Productshoe/>
</TabPane>
</Tabs>
请向我解释如何在 antd
库中激活时将 component
传递到选项卡面板?示例组件 Productshoe
<Tabs defaultActiveKey="1">
<TabPane tab="productshoe" key="productshoe">
<Productshoe/>
</TabPane>
但是出错了
您在 TabPane 中的 key
与父项 Tabs
的键不匹配。尽量保持键值相同。如果添加更多选项卡,请保持键值唯一。
参考:Link
<Tabs defaultActiveKey="productshoe" onChange={callback}>
<TabPane tab="Tab 1" key="productshoe">
<Productshoe/>
</TabPane>
</Tabs>