vue数据绑定值(字符串拼接)的几种方法
案例
<div :title="`你好:${item.Storename}`" link="/component/radio" :inline-desc="'地址:' + item.Storeaddess"></div>
:title="`字符串${xx}`" :title="'字符串' + xx"
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 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 },
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。