vue中select绑定多个值
不再通过v-model和value进行绑定而是通过绑定索引值Index然后通过定义@input=change方法,通过索引值获取并更新想要绑定的多个值<el-select v-model="basic_info.itemindex" placeholder=""@input="change"><el-option v-for="(item,index) in categoryLi
·
不再通过v-model和value进行绑定
而是通过绑定索引值Index
然后通过定义@input=change方法,通过索引值获取并更新想要绑定的多个值
<el-select v-model="basic_info.itemindex" placeholder="" @input="change">
<el-option v-for="(item,index) in categoryList" :key=index :label="item.categoryName" :value="index" />
</el-select>
change(index) {
this.basic_info.categoryCode = this.categoryList[index].categoryCode
this.default_return_value = this.categoryList[index].defaultReturnValue
},
更多推荐
已为社区贡献1条内容
所有评论(0)