The problem of binding value between element-ui el-table and el-select

table has an el-select for each row, and then I need to add the item object to an array every time I select a select.
< el-table-column prop= "position" label= "standby" align= "center" >

      <template slot-scope="scope">
      <el-select v-model="selectedPosition" placeholder="">
        <el-option
          v-for="(item,idx) in positionList"
          :key="idx"
          :label="item.name"
          :value="item">
        </el-option>
      </el-select>
    </template>

< / el-table-column >

Apr.26,2022

< el-select Vmurf show = "scope.row.select" VMI model = "scope.row.licenseTag" filterable remote
placeholder= "Please select"
clearable
@ change= "remoteMethod" >
< el-option Vlyfor = "item in carList": key= "item.id": label= "item.licenseTag": value= "item.id" > < / el-option >
< / el-select >

remoteMethod (data) {

for(var item in this.carList){
  if(this.carList[item].id==data){
  xxx
  }
}

}

Menu