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
  }
}

}

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3ae53-2b9c9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3ae53-2b9c9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?