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

42 lines
631 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 React from 'react';
import { Tabs } from 'antd';
2018-06-27 15:55:04 +08:00
const { TabPane } = Tabs;
2015-06-12 12:01:02 +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}>
2019-05-07 14:57:32 +08:00
<TabPane tab="Tab 1" key="1">
Content of Tab Pane 1
</TabPane>
<TabPane tab="Tab 2" key="2">
Content of Tab Pane 2
</TabPane>
<TabPane tab="Tab 3" key="3">
Content of Tab Pane 3
</TabPane>
</Tabs>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```