2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 4
|
2017-02-04 01:13:35 +08:00
|
|
|
title:
|
2016-08-23 14:15:34 +08:00
|
|
|
zh-CN: 附加内容
|
|
|
|
en-US: Extra content
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-12-14 22:16:25 +08:00
|
|
|
|
2016-08-03 10:39:20 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-12-14 22:16:25 +08:00
|
|
|
可以在页签右边添加附加操作。
|
|
|
|
|
2016-08-03 10:39:20 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
You can add extra actions to the right of Tabs.
|
|
|
|
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-12-14 22:16:25 +08:00
|
|
|
import { Tabs, Button } from 'antd';
|
|
|
|
const TabPane = Tabs.TabPane;
|
|
|
|
|
2016-08-03 10:39:20 +08:00
|
|
|
const operations = <Button>Extra Action</Button>;
|
2015-12-14 22:16:25 +08:00
|
|
|
|
|
|
|
ReactDOM.render(
|
2016-04-29 12:13:27 +08:00
|
|
|
<Tabs tabBarExtraContent={operations}>
|
2016-08-03 10:39:20 +08:00
|
|
|
<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>
|
2016-04-29 12:13:27 +08:00
|
|
|
</Tabs>
|
|
|
|
, mountNode);
|
2015-12-14 22:16:25 +08:00
|
|
|
````
|