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
516 B

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