时间轴の例子

5/24/2022

此部分为单独时间轴timeLine 的使用的例子

# 实况历史

当前时间点在最右侧,展示历史时间点

<template>
  <historyTimeLine />
</template>
<script>
// import { historyTimeLine } from 'vue2-time-date-axis'
// export default {
//   components: { historyTimeLine }
// }
</script>
1
2
3
4
5
6
7
8
9

具体代码见,开源项目的具体页面地址为:historyTimeLine@码云 (opens new window)

# 预报外推

当前时间点在最左侧,展示未来时间点

<template>
  <forecastTimeLine />
</template>
<script>
import { forecastTimeLine } from 'vue2-time-date-axis'
export default {
  components: { forecastTimeLine }
}
</script>
1
2
3
4
5
6
7
8
9

具体代码见,开源项目的具体页面地址为:forecastTimeLine@码云 (opens new window)

Last Updated: 5/27/2022, 6:03:23 PM