mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
35 lines
442 B
Markdown
35 lines
442 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 禁用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
禁用某一项。
|
|
|
|
## en-US
|
|
|
|
Disabled a tab.
|
|
|
|
```jsx
|
|
import { Tabs } from 'antd';
|
|
|
|
const { TabPane } = Tabs;
|
|
|
|
export default () => (
|
|
<Tabs defaultActiveKey="1">
|
|
<TabPane tab="Tab 1" key="1">
|
|
Tab 1
|
|
</TabPane>
|
|
<TabPane tab="Tab 2" disabled key="2">
|
|
Tab 2
|
|
</TabPane>
|
|
<TabPane tab="Tab 3" key="3">
|
|
Tab 3
|
|
</TabPane>
|
|
</Tabs>
|
|
);
|
|
```
|