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

46 lines
578 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 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',
},
]}
/>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```