vue+element项目中select下拉框label想要显示多个值
<el-selectv-model="form.plantBatchId"collapse-tagsfilterableplaceholder="请选择品种种类"style="width: 270px;"><el-optionv-for="item in plan...
·
<el-select
v-model="form.plantBatchId"
collapse-tags
filterable
placeholder="请选择品种种类"
style="width: 270px;">
<el-option
v-for="item in plantBatchIdArr"
:key="item.id"
:label="`${item.batchId}-${item.varietyName}`"
:value="item.batchId">
</el-option>
</el-select>
主要代码是::label="${item.batchId}-${item.varietyName}
"
更多推荐
已为社区贡献6条内容
所有评论(0)