Vue中$set使用

在data中定义了一个数组,好比:web data(){ return{ names: [{ no: "", str: "" }] } } 在后续业务中,给这个names数组对象中增长了元素,用传统的赋值,是没法赋上去的,后来用$set数组 this.$set(this.names, 0, this.name);
相关文章
相关标签/搜索