選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

timeline-item.vue 542 B

4年前
1234567891011121314151617181920212223
  1. <template>
  2. <view :class="[icon ? 'cuIcon-' + icon : '', className]" :style="style" 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: { default: '' }
  19. }
  20. }
  21. </script>