tn-time-line.vue 595 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="tn-time-line-class tn-time-line">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'tn-time-line',
  9. props: {
  10. },
  11. data() {
  12. return {
  13. }
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .tn-time-line {
  19. padding-left: 40rpx;
  20. position: relative;
  21. &::before {
  22. content: '';
  23. position: absolute;
  24. width: 1px;
  25. left: 0;
  26. top: 12rpx;
  27. bottom: 0;
  28. border-left: 1px solid #AAAAAA;
  29. transform-origin: 0 0;
  30. transform: scaleX(0.5);
  31. }
  32. }
  33. </style>