computed: {
objs() {
let obj = {}
for (const key in this.searchData) {
obj[key] = this.searchData[key]
}
return obj
}
},
解决方案:
<el-input placeholder="请输入司机姓名/手机号/车队长姓名查找" v- model="objs.keywords" clearable @input="change($event)">
methods:{
change(e){
this.$forceUpdate();//刷新视图
},
},