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.

23 lines
478 B

10 years ago
# 禁用
10 years ago
10 years ago
- order: 1
10 years ago
10 years ago
禁用某一项。
10 years ago
---
````jsx
var Tabs = antd.Tabs;
var TabPane = Tabs.TabPane;
10 years ago
10 years ago
function callback(key) {}
10 years ago
React.render(
<Tabs defaultActiveKey="1" onChange={callback}>
<TabPane tab="选项卡一" key="1">选项卡一</TabPane>
<TabPane tab="选项卡二" disabled={true} key="2">选项卡二</TabPane>
<TabPane tab="选项卡三" key="3">选项卡三</TabPane>
</Tabs>
, document.getElementById('components-tabs-demo-disabled'));
10 years ago
````