vue input 输入数据,但是未被渲染到页面,点击其他,就会
2021-05-21 本文已影响0人
O人心
原因:如果对象中包含的层级很多,对象包含数组这类的对象,赋值应该用$set
let arr = [
{
no: 1,
qname: "",
name: "",
imgAcad: [],
showTipAcad: false,
},
];
this.$set(this.infoForm, "acadList", arr);
而不是
this.infoForm.acadList = arr