解决element-ui的下拉框有值却无法选中的情况
<el-select v-model="value" placeholder="请选择" @change="change()">
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select>
解决如下
change(){
this.$forceUpdate()
},