例如
<el-select v-model="biaotou11" placeholder="请选择模型类别"
clearable
@change="biaotouchange"
ref="dataTypeSelect1">
<el-option v-for="tabname in tableTitleName" :key="tabname.id" :label="tabname.columnComment":value="tabname.columnName" />
</el-select>
获取当前选中的select的label值
let currentLabel = this.$refs.dataTypeSelect1.selected.currentLabel;
console.log("当前select选中的label值是:",currentLabel )
标签:el,currentLabel,label,获取,当前,select
From: https://www.cnblogs.com/zh76412950/p/17525610.html