2016-08-03 10:39:20 +08:00
---
category: Components
2017-06-19 11:01:29 +08:00
type: Data Display
2016-09-21 11:28:38 +08:00
title: Tabs
2017-06-26 20:20:57 +08:00
cols: 1
2020-05-31 11:48:34 +08:00
cover: https://gw.alipayobjects.com/zos/antfincdn/lkI2hNEDr2V/Tabs.svg
2016-08-03 10:39:20 +08:00
---
Tabs make it easy to switch between different views.
2016-09-10 13:43:30 +08:00
### When To Use
2016-08-03 10:39:20 +08:00
2017-09-18 10:27:49 +08:00
Ant Design has 3 types of Tabs for different situations.
2016-08-03 10:39:20 +08:00
- Card Tabs: for managing too many closeable views.
2016-09-01 18:12:12 +08:00
- Normal Tabs: for functional aspects of a page.
2020-04-09 16:12:47 +08:00
- [Radio.Button ](/components/radio/#components-radio-demo-radiobutton ): for secondary tabs.
2016-08-03 10:39:20 +08:00
2022-08-05 10:49:08 +08:00
### Usage upgrade after 4.23.0
```__react
import Alert from '../alert';
ReactDOM.render(< Alert message = "After version 4.23.0, we provide a simpler usage <Tabs items={[...]} /> with better performance and potential of writing simpler code style in your applications. Meanwhile, we deprecated the old usage in browser console, we will remove it in antd 5.0." / > , mountNode);
```
```jsx
// works when >=4.23.0, recommended ✅
const items = [
{ label: 'Tab 1', key: 'item-1', children: 'Content 1' }, // remember to pass the key prop
{ label: 'Tab 2', key: 'item-2', children: 'Content 2' },
];
return < Tabs items = {items} / > ;
// works when < 4.23.0 , deprecated when > =4.23.0 🙅🏻♀️
< Tabs >
< Tabs.TabPane tab = "Tab 1" key = "item-1" >
Content 1
< / Tabs.TabPane >
< Tabs.TabPane tab = "Tab 2" key = "item-2" >
Content 2
< / Tabs.TabPane >
< / Tabs > ;
```
2016-08-03 10:39:20 +08:00
## API
### Tabs
2020-05-30 18:28:25 +08:00
| Property | Description | Type | Default | Version |
2022-07-21 18:45:48 +08:00
| --- | --- | --- | --- | --- | --- |
2020-05-30 18:28:25 +08:00
| activeKey | Current TabPane's key | string | - | |
2020-10-21 10:33:43 +08:00
| addIcon | Customize add icon | ReactNode | - | 4.4.0 |
2020-10-27 23:00:54 +08:00
| animated | Whether to change tabs with animation. Only works while `tabPosition="top"` | boolean \| { inkBar: boolean, tabPane: boolean } | { inkBar: true, tabPane: false } | |
2020-10-21 10:33:43 +08:00
| centered | Centers tabs | boolean | false | 4.4.0 |
2020-07-02 14:07:52 +08:00
| defaultActiveKey | Initial active TabPane's key, if `activeKey` is not set | string | - | |
2020-06-17 23:18:14 +08:00
| hideAdd | Hide plus icon or not. Only works while `type="editable-card"` | boolean | false | |
2022-04-30 15:11:41 +08:00
| moreIcon | The custom icon of ellipsis | ReactNode | < EllipsisOutlined /> | 4.14.0 |
2022-06-02 19:31:27 +08:00
| popupClassName | `className` for more dropdown. | string | - | 4.21.0 |
2020-10-21 10:33:43 +08:00
| renderTabBar | Replace the TabBar | (props: DefaultTabBarProps, DefaultTabBar: React.ComponentClass) => React.ReactElement | - | |
2020-07-02 14:07:52 +08:00
| size | Preset tab bar size | `large` \| `default` \| `small` | `default` | |
2020-10-28 11:51:43 +08:00
| tabBarExtraContent | Extra content in tab bar | ReactNode \| {left?: ReactNode, right?: ReactNode} | - | object: 4.6.0 |
2020-05-30 18:28:25 +08:00
| tabBarGutter | The gap between tabs | number | - | |
2022-03-25 14:27:30 +08:00
| tabBarStyle | Tab bar style object | CSSProperties | - | |
2022-07-21 18:45:48 +08:00
| tabPosition | Position of tabs | `top` \| `right` \| `bottom` \ | `left` | `top` | |
2021-08-22 14:58:00 +08:00
| destroyInactiveTabPane | Whether destroy inactive TabPane when change tab | boolean | false | |
2020-05-30 18:28:25 +08:00
| type | Basic style of tabs | `line` \| `card` \| `editable-card` | `line` | |
2020-07-02 14:07:52 +08:00
| onChange | Callback executed when active tab is changed | function(activeKey) {} | - | |
2022-04-30 15:11:41 +08:00
| onEdit | Callback executed when tab is added or removed. Only works while `type="editable-card"` | (action === 'add' ? event : targetKey, action): void | - | |
2020-07-02 14:07:52 +08:00
| onTabClick | Callback executed when tab is clicked | function(key: string, event: MouseEvent) | - | |
| onTabScroll | Trigger when tab scroll | function({ direction: `left` \| `right` \| `top` \| `bottom` }) | - | 4.3.0 |
2019-03-15 19:01:20 +08:00
2019-03-14 20:59:05 +08:00
More option at [rc-tabs option ](https://github.com/react-component/tabs#tabs )
2016-08-03 10:39:20 +08:00
### Tabs.TabPane
2017-10-25 10:25:44 +08:00
2019-11-21 10:23:34 +08:00
| Property | Description | Type | Default |
| --- | --- | --- | --- |
2020-10-21 10:33:43 +08:00
| closeIcon | Customize close icon in TabPane's head. Only works while `type="editable-card"` | ReactNode | - |
2022-07-21 18:45:48 +08:00
| disabled | Set TabPane disabled | boolean | false |
2019-11-21 10:23:34 +08:00
| forceRender | Forced render of content in tabs, not lazy render after clicking on tabs | boolean | false |
| key | TabPane's key | string | - |
2020-10-09 10:08:52 +08:00
| tab | Show text in TabPane's head | ReactNode | - |
2019-03-15 19:01:20 +08:00
2019-03-14 20:59:05 +08:00
More option at [rc-tabs option ](https://github.com/react-component/tabs#tabpane )