mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
628968f460
* refactor: Using items * docs: replace with items * docs: deprecated demo * test: Update snapshot * docs: simple basic demo * test: coverage
46 lines
578 B
Markdown
46 lines
578 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 禁用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
禁用某一项。
|
|
|
|
## en-US
|
|
|
|
Disabled a tab.
|
|
|
|
```tsx
|
|
import { Tabs } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<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',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|
|
```
|