index.vue 743 B

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