html
<el-select v-model="value" placeholder="请选择" class="transparent-select">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
css
::v-deep .transparent-select .el-input__inner {
background-color: transparent !important;
}
评论 暂无