--- order: 8 title: zh-CN: 带页签的卡片 en-US: With tabs --- ## zh-CN 可承载更多内容。 ## en-US More content can be hosted. ````jsx import { Card } from 'antd'; const tabList = [{ key: 'tab1', tab: 'tab1', }, { key: 'tab2', tab: 'tab2', }]; const contentList = { tab1:
content1
, tab2:content2
, }; class TabsCard extends React.Component { state = { key: 'tab1', } onTabChange = (key) => { this.setState({ key }); } render() { return (