我正在尝试在我的React应用中实现垂直堆叠的标签,我很高兴看到此拉取请求合并到react-bootstrap
https://github.com/react-bootstrap/react-bootstrap/pull/1143
问题在于我一直在接收Warning: Unknown props `position`, `tabWidth` on <ul> tag. Remove these props from the element
这是我的代码;
<Tabs defaultActiveKey={2} position='left' tabWidth={3} id="uncontrolled-tab-example">
<Tab eventKey={1} title="Tab 1">Tab 1 content</Tab>
<Tab eventKey={2} title="Tab 2">Tab 2 content</Tab>
<Tab eventKey={3} title="Tab 3" disabled>Tab 3 content</Tab>
</Tabs>
还有其他我想念的东西吗?