2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 1
|
2016-08-24 10:33:25 +08:00
|
|
|
title:
|
2016-08-23 14:15:34 +08:00
|
|
|
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.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Tabs } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import React from 'react';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2022-08-05 10:49:08 +08:00
|
|
|
<Tabs
|
|
|
|
defaultActiveKey="1"
|
|
|
|
items={[
|
|
|
|
{
|
|
|
|
label: 'Tab 1',
|
|
|
|
key: '1',
|
|
|
|
children: 'Tab 1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Tab 2',
|
|
|
|
key: '2',
|
|
|
|
children: 'Tab 2',
|
|
|
|
disabled: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Tab 3',
|
|
|
|
key: '3',
|
|
|
|
children: 'Tab 3',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|