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

26 lines
515 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 8
title: 卡片式页签
---
2015-12-14 16:30:15 +08:00
2015-12-17 12:33:34 +08:00
另一种样式的页签,不提供对应的垂直样式。
2015-12-14 16:30:15 +08:00
2016-03-31 09:40:55 +08:00
2015-12-14 16:30:15 +08:00
````jsx
import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;
function callback(key) {
console.log(key);
}
ReactDOM.render(
<Tabs onChange={callback} type="card">
<TabPane tab="选项卡一" key="1">选项卡一内容</TabPane>
<TabPane tab="选项卡二" key="2">选项卡二内容</TabPane>
<TabPane tab="选项卡三" key="3">选项卡三内容</TabPane>
</Tabs>
, mountNode);
2015-12-14 16:30:15 +08:00
````