2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 8
|
2017-02-04 01:13:35 +08:00
|
|
|
title:
|
2016-08-23 14:15:34 +08:00
|
|
|
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
|
|
|
|
|
2019-08-07 17:26:39 +08:00
|
|
|
Another type of Tabs, which doesn't support vertical mode.
|
2016-08-03 10:39:20 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2015-12-14 16:30:15 +08:00
|
|
|
import { Tabs } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import React from 'react';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const onChange = (key: string) => {
|
2015-12-14 16:30:15 +08:00
|
|
|
console.log(key);
|
2022-05-19 09:46:26 +08:00
|
|
|
};
|
2015-12-14 16:30:15 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2022-08-05 10:49:08 +08:00
|
|
|
<Tabs
|
|
|
|
onChange={onChange}
|
|
|
|
type="card"
|
|
|
|
items={new Array(3).fill(null).map((_, i) => {
|
|
|
|
const id = String(i + 1);
|
|
|
|
return {
|
|
|
|
label: `Tab ${id}`,
|
|
|
|
key: id,
|
|
|
|
children: `Content of Tab Pane ${id}`,
|
|
|
|
};
|
|
|
|
})}
|
|
|
|
/>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|