mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
2e0424d3b2
* translated doc of tab title * fixs: misspell * fixs: misspell * remove full stop
579 B
579 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
可以在页签右边添加附加操作。
en-US
You can add extra actions to the right of Tabs.
import { Tabs, Button } from 'antd';
const TabPane = Tabs.TabPane;
const operations = <Button>Extra Action</Button>;
ReactDOM.render(
<Tabs tabBarExtraContent={operations}>
<TabPane tab="Tab 1" key="1">Content of tab 1</TabPane>
<TabPane tab="Tab 2" key="2">Content of tab 2</TabPane>
<TabPane tab="Tab 3" key="3">Content of tab 3</TabPane>
</Tabs>
, mountNode);