ant-design/components/tabs/demo/disabled.md
Shawn Sit 2e0424d3b2 Translation tab title (#2815)
* translated doc of tab title

* fixs: misspell

* fixs: misspell

* remove full stop
2016-08-23 14:15:34 +08:00

431 B

order title title
1 禁用
zh-CN en-US
禁用 Disabled

zh-CN

禁用某一项。

en-US

Disabled a tab.

import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;

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="Tav 3" key="3">Tab 3</TabPane>
  </Tabs>
, mountNode);