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.

20 lines
394 B

---
order: 1
title: 禁用
---
10 years ago
10 years ago
禁用某一项。
10 years ago
````jsx
import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;
10 years ago
9 years ago
ReactDOM.render(
<Tabs defaultActiveKey="1">
<TabPane tab="选项卡一" key="1">选项卡一</TabPane>
<TabPane tab="选项卡二" disabled key="2">选项卡二</TabPane>
<TabPane tab="选项卡三" key="3">选项卡三</TabPane>
</Tabs>
, mountNode);
10 years ago
````