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.

17 lines
251 B

---
order: 5
title: 预加载的卡片
---
9 years ago
数据读入前会有文本块样式。
````jsx
import { Card } from 'antd';
ReactDOM.render(
<Card loading title="卡片标题" style={{ width: 300 }}>
Whatever content
</Card>
, mountNode);
9 years ago
````