<el-select @change="varChange" v-model="form.variable" placeholder="请选择">
<el-option
v-for="item in form.variableGroup"
:key="item.groupId"
:label="item.groupName"
:value="item.groupId"
></el-option>
</el-select>
label属性绑定的下拉框要显示内容如下图
el-select里change事件 ,在下拉框选取数据时候触发的事件,会有一个返回的参数,就是 el-option里v