index.vue 635 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="lc-field-head">
  3. <div class="lc-field-title">
  4. <slot />
  5. </div>
  6. </div>
  7. </template>
  8. <style lang="scss" scoped>
  9. .lc-field-head {
  10. height: 30px;
  11. // margin-bottom: 12px;
  12. .lc-field-title {
  13. position: relative;
  14. padding-left: 12px;
  15. line-height: 30px;
  16. height: 30px;
  17. &:after {
  18. position: absolute;
  19. left: 0;
  20. top: 50%;
  21. transform: translateY(-50%);
  22. content: '';
  23. width: 4px;
  24. height: 14px;
  25. background-color: var(--bs-el-color-primary);
  26. }
  27. }
  28. }
  29. </style>