标签:code hang day index hold list v-for 优惠券 选择
<el-select
v-model="form.coupon"
placeholder="请选择优惠券类型"
@change="selectCoupon"
>
<el-option
v-for="(item, index) in couponList"
:key="index"
:label="`${item.agioType} ${item.day}天`"
:value="item.dId"
></el-option>
</el-select>
element -ui select下拉框label显示多个值
标签:code hang day index hold list v-for 优惠券 选择
原文地址:https://www.cnblogs.com/itcjh/p/13140611.html