vue+elementUI中使用v-for循环出多个select下拉框,默认绑定,但改变一个下拉框,其余下拉框也会改变的问题
vue+elementUI中使用v-for循环出多个select下拉框,默认绑定,但改变一个下拉框,其余下拉框也会改变的问题样式如下<el-table-column label="姓名" prop="username"><template slot-scope='scope'><el-select v-model='scope.row.type'>...
·
样式如下
<el-table-column label="姓名" prop="username">
<template slot-scope='scope'>
<el-select v-model='scope.row.type'>
<el-option v-for='item in option' :key='item.id' :value='item.lable' :label='item.label'> </el-option>
</el-select>
</template>
</el-table-column>
option是写在data里面的数据。
scope.row.type是后台传来的数据,也就是默认绑定的是后端传过来的值。
更多推荐
已为社区贡献6条内容
所有评论(0)