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 >