ant-design/components/tabs/demo/disabled.md

38 lines
497 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
2016-08-24 10:33:25 +08:00
title:
zh-CN: 禁用
en-US: Disabled
2016-03-31 09:40:55 +08:00
---
2015-06-12 20:21:13 +08:00
2016-08-03 10:39:20 +08:00
## zh-CN
2015-06-17 20:28:02 +08:00
禁用某一项。
2015-06-12 20:21:13 +08:00
2016-08-03 10:39:20 +08:00
## en-US
Disabled a tab.
```tsx
import { Tabs } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2018-06-27 15:55:04 +08:00
const { TabPane } = Tabs;
2015-06-12 20:21:13 +08:00
const App: React.FC = () => (
2015-12-27 16:20:59 +08:00
<Tabs defaultActiveKey="1">
2019-05-07 14:57:32 +08:00
<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>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```