12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <div class="lc-field-head">
- <div class="lc-field-title">
- <slot />
- </div>
- </div>
- </template>
- <style lang="scss" scoped>
- .lc-field-head {
- height: 30px;
- .lc-field-title {
- width: 308px;
- // 文字溢出隐藏
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- position: relative;
- padding-left: 12px;
- line-height: 30px;
- height: 30px;
- &:after {
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- content: '';
- width: 4px;
- height: 14px;
- background-color: var(--bs-el-color-primary);
- }
- }
- }
- </style>
|