Vue 添加刪除對象中的屬性

data(){ form:{ a:'', b:'' } } //添加 this.$set(對象, '屬性名',屬性值) //刪除 delete this.form.a;//js方法 僅在2.2.0+版本中支持 //Vue.delete(this.form,'a');//vue方法 this.$delete(this.form,'a');
相關文章
相關標籤/搜索