在vue中data里面有三个对象
data(){
return{
select1:{id:1012589435413},
select1:{id:5487496874987},
NoticeForm:{},
Archives:{},
...... // 多个
}
},
methods:{
setItem(){
let NoticeForm = this.NoticeForm;
NoticeForm.data3 = this.select1.Id;
NoticeForm.data4 = this.select2.Id;
let Archives = this.Archives;
Archives.data3 = this.select1.Id;
Archives.data4 = this.select2.Id;
...... // 多个
}
},
上面的这是最常见的操作,有没有更简便的方法可以实现,尽量不循环