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.vue 254 B

4 years ago
123456789101112131415161718
  1. <template>
  2. <view class="cu-timeline">
  3. <view class="cu-time">
  4. <slot name="title">{{ title }}</slot>
  5. </view>
  6. <slot></slot>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'l-timeline',
  12. props: {
  13. title: {}
  14. }
  15. }
  16. </script>