mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-24 12:45:18 +08:00
32 lines
628 B
Markdown
32 lines
628 B
Markdown
|
# 方向
|
||
|
左,<span style="display: inline-block; transform: scaleX(-1);">右</span>
|
||
|
```html
|
||
|
<n-timeline item-placement="right">
|
||
|
<n-timeline-item
|
||
|
content="啊"
|
||
|
/>
|
||
|
<n-timeline-item
|
||
|
type="success"
|
||
|
title="成功"
|
||
|
content="哪里成功"
|
||
|
time="2018-04-03 20:46"
|
||
|
/>
|
||
|
<n-timeline-item
|
||
|
type="error"
|
||
|
content="哪里失败"
|
||
|
time="2018-04-03 20:46"
|
||
|
/>
|
||
|
<n-timeline-item
|
||
|
type="warning"
|
||
|
title="警告"
|
||
|
content="哪里警告"
|
||
|
time="2018-04-03 20:46"
|
||
|
/>
|
||
|
<n-timeline-item
|
||
|
type="info"
|
||
|
title="信息"
|
||
|
content="是的"
|
||
|
time="2018-04-03 20:46"
|
||
|
/>
|
||
|
</n-timeline>
|
||
|
```
|