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.

timeline-item.vue 503 B

4 years ago
1234567891011121314151617181920212223
  1. <template>
  2. <view :class="[icon ? 'cuIcon-' + icon : '']" class="cu-item cu-timeline-item">
  3. <view :class="['bg-' + color]" :style="contentStyle" class="content shadow-blur">
  4. <slot name="time">
  5. <text v-if="time" class="margin-right-sm">{{ time }}</text>
  6. </slot>
  7. <slot></slot>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'l-timeline-item',
  14. props: {
  15. time: {},
  16. icon: {},
  17. color: { default: 'blue' },
  18. contentStyle: {}
  19. }
  20. }
  21. </script>