在el-select远程搜索中会有个回显问题
就是明明传入了绑定值但是却会显示不出来
解决代码如下
在数据初始化的时候将获取到的数据做进一步的处理,进行本地select组件的一个添加
//select 下拉框初始化处理
initializeSelect(data) {
this.$refs.select.cachedOptions.push({
currentLabel: data.name, // 当前绑定的数据的label
currentValue: data.id, // 当前绑定数据的value
label: data.name, // 当前绑定的数据的label
value: data // 当前绑定数据的value
})
},