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.
24 lines
668 B
24 lines
668 B
7 years ago
|
<cn>
|
||
|
#### 最后一个
|
||
|
当任务状态正在发生,还在记录过程中,可用幽灵节点来表示当前的时间节点。(用于时间正序排列)
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Last node
|
||
|
When the timeline is incomplete and ongoing, put a ghost node at last. set `pending={true}` or `pending={a React Element}`. Used in ascend chronological order.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<a-timeline pending="Recording...">
|
||
|
<a-timeline-item>Create a services site 2015-09-01</a-timeline-item>
|
||
|
<a-timeline-item>Solve initial network problems 2015-09-01</a-timeline-item>
|
||
|
<a-timeline-item>Technical testing 2015-09-01</a-timeline-item>
|
||
|
</a-timeline>
|
||
|
</template>
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
|