mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
25 lines
378 B
Markdown
25 lines
378 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 预加载的卡片
|
|
en-US: Loading card
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
数据读入前会有文本块样式。
|
|
|
|
## en-US
|
|
|
|
Shows a loading indicator while the contents of the card is being fetched.
|
|
|
|
````jsx
|
|
import { Card } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Card loading title="Card title" style={{ width: '34%' }}>
|
|
Whatever content
|
|
</Card>
|
|
, mountNode);
|
|
````
|