You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/timeline/demo/pending.md

21 lines
510 B
Markdown

10 years ago
# 最后一个
- order: 2
在最后位置添加一个幽灵节点,表示时间轴未完成,还在记录过程中。
10 years ago
---
````jsx
10 years ago
let Timeline = antd.Timeline;
let container = document.getElementById('components-timeline-demo-pending');
10 years ago
10 years ago
React.render(
<Timeline pending={true}>
10 years ago
<Timeline.Item>创建服务现场 2015-09-01</Timeline.Item>
<Timeline.Item>初步排除网络异常 2015-09-01</Timeline.Item>
<Timeline.Item>技术测试异常 2015-09-01</Timeline.Item>
10 years ago
</Timeline>
10 years ago
, container);
````