index.vue 773 B

12345678910111213141516171819202122232425262728293031323334353637
  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. width: 308px;
  14. // 文字溢出隐藏
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. white-space: nowrap;
  18. position: relative;
  19. padding-left: 12px;
  20. line-height: 30px;
  21. height: 30px;
  22. &:after {
  23. position: absolute;
  24. left: 0;
  25. top: 50%;
  26. transform: translateY(-50%);
  27. content: '';
  28. width: 4px;
  29. height: 14px;
  30. background-color: var(--bs-el-color-primary);
  31. }
  32. }
  33. }
  34. </style>