You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
450 B

---
order: 1
title:
zh-CN: 禁用
en-US: Disabled
---
10 years ago
## zh-CN
10 years ago
禁用某一项。
10 years ago
## en-US
Disabled a tab.
```jsx
import { Tabs } from 'antd';
const { TabPane } = Tabs;
10 years ago
9 years ago
ReactDOM.render(
<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>,
mountNode,
);
```