You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
465 B

10 years ago
# 基本
10 years ago
- order: 0
10 years ago
10 years ago
默认选中第二项。
10 years ago
---
````jsx
var Tabs = antd.Tabs;
var TabPane = Tabs.TabPane;
10 years ago
10 years ago
function callback(key) {
console.log(key);
}
10 years ago
React.render(
<Tabs defaultActiveKey="2" onChange={callback}>
10 years ago
<TabPane tab="tab 1" key="1">选项卡一</TabPane>
<TabPane tab="tab 2" key="2">选项卡二</TabPane>
<TabPane tab="tab 3" key="3">选项卡三</TabPane>
</Tabs>
, document.getElementById('components-tabs-demo-basic'));
10 years ago
````