ant-design/components/timeline/demo/pending.md

27 lines
730 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title:
zh-CN: 最后一个
en-US: Last node
2016-03-31 09:40:55 +08:00
---
2015-09-01 21:15:31 +08:00
## zh-CN
在最后位置添加一个幽灵节点,表示时间轴未完成,还在记录过程中。可以指定 `pending={true}` 或者 `pending={一个 React 元素}`
2015-09-01 21:15:31 +08:00
## en-US
When the timeline is incomplete and ongoing, put a ghost node at last. set `pending={true}` or `pending={a React Element}`
2017-02-13 10:55:53 +08:00
````jsx
import { Timeline } from 'antd';
2015-09-01 21:15:31 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Timeline pending={<a href="#">See more</a>}>
<Timeline.Item>Create a services site 2015-09-01</Timeline.Item>
<Timeline.Item>Solve initial network problems 2015-09-01</Timeline.Item>
<Timeline.Item>Technical testing 2015-09-01</Timeline.Item>
</Timeline>
, mountNode);
2015-09-01 21:15:31 +08:00
````