33 lines
741 B
Vue
33 lines
741 B
Vue
<docs>
|
|
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 右侧时间轴点
|
|
en-US: Right alternate
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
时间轴点可以在内容的右边。
|
|
|
|
## en-US
|
|
|
|
Right alternate timeline.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-timeline mode="right">
|
|
<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>
|
|
<template #dot><clock-circle-outlined style="font-size: 16px" /></template>
|
|
Technical testing 2015-09-01
|
|
</a-timeline-item>
|
|
<a-timeline-item>Network problems being solved 2015-09-01</a-timeline-item>
|
|
</a-timeline>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ClockCircleOutlined } from '@ant-design/icons-vue';
|
|
</script>
|