You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
743 B
Vue
35 lines
743 B
Vue
<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>
|