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

33 lines
611 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 8
2017-02-04 01:13:35 +08:00
title:
zh-CN: 卡片式页签
en-US: Card type tab
2016-03-31 09:40:55 +08:00
---
2015-12-14 16:30:15 +08:00
2016-08-03 10:39:20 +08:00
## zh-CN
2015-12-17 12:33:34 +08:00
另一种样式的页签,不提供对应的垂直样式。
2015-12-14 16:30:15 +08:00
2016-08-03 10:39:20 +08:00
## en-US
Another type Tabs, which doesn't support vertical mode.
2017-02-13 10:55:53 +08:00
````jsx
2015-12-14 16:30:15 +08:00
import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;
function callback(key) {
console.log(key);
}
ReactDOM.render(
<Tabs onChange={callback} type="card">
2016-10-10 16:21:04 +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>
2015-12-14 16:30:15 +08:00
</Tabs>
, mountNode);
2015-12-14 16:30:15 +08:00
````