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

50 lines
701 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
2017-02-04 01:13:35 +08:00
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-06-12 12:01:02 +08:00
2016-08-03 10:39:20 +08:00
## zh-CN
2015-08-06 16:47:01 +08:00
默认选中第一项。
2015-06-12 12:01:02 +08:00
2016-08-03 10:39:20 +08:00
## en-US
Default activate first 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 onChange = (key: string) => {
2015-06-17 20:28:02 +08:00
console.log(key);
};
2015-06-12 12:01:02 +08:00
const App: React.FC = () => (
<Tabs
defaultActiveKey="1"
onChange={onChange}
items={[
{
label: `Tab 1`,
key: '1',
children: `Content of Tab Pane 1`,
},
{
label: `Tab 2`,
key: '2',
children: `Content of Tab Pane 2`,
},
{
label: `Tab 3`,
key: '3',
children: `Content of Tab Pane 3`,
},
]}
/>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```