How to take the labi value in the select selector in element-ui

: I got the value value through the change method. May I ask how to: can I take the label value? how to take

?
<el-select  v-model="type2" @change="currentSel">
   <el-option v-for="item in options2" :label="item.labelName" :value="item.id"></el-option>
</el-select>


Portal https://codeshelper.com/q/10.


you can: value=" item ", in which case type2 is the item object

.
Menu