cl-timeline.vue 484 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="cl-timeline">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. /**
  8. * timeline 时间线
  9. * @description 时间线
  10. * @tutorial https://docs.cool-js.com/uni/components/view/timeline.html
  11. * @property {Number} timestampWidth 左侧时间宽度,默认140
  12. * @example 见教程
  13. */
  14. export default {
  15. name: "cl-timeline",
  16. componentName: "ClTimeline",
  17. props: {
  18. // 左侧时间宽度
  19. timestampWidth: {
  20. type: Number,
  21. default: 150,
  22. },
  23. },
  24. };
  25. </script>