推拿小程序前端代码仓库
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.

40 lines
638 B

  1. <template>
  2. <view class="flex title__view">
  3. <view class="underline"></view>
  4. <view class="title">
  5. <slot></slot>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. }
  15. }
  16. </script>
  17. <style scoped lang="scss">
  18. .title__view {
  19. position: relative;
  20. .underline {
  21. margin-top: 26rpx;
  22. width: 146rpx;
  23. height: 8rpx;
  24. border-radius: 4rpx;
  25. background-image: linear-gradient(to right, #84A73F, #D8FF8F);
  26. }
  27. .title {
  28. transform: translateX(-10rpx);
  29. color: #000000;
  30. font-size: 28rpx;
  31. font-weight: 700;
  32. position: absolute;
  33. top: 0;
  34. }
  35. }
  36. </style>