问题:开始没有设置预设值时,v-model能够起做用,设置以后 失效this
computed:{
searchInfo:{
get:function () {
let object=this.searchObject;
this.formItemList.forEach(value=>{
this.$set(object,[value.prop],value.dataType||'');
// object[value.prop]=value.dataType||'';
});
console.log(object);
return object
},
}
},
缘由:searchInfo对象没有初始化,属性未声明解决:使用this.$set