Home > Article > Web Front-end > How to delete attributes in vuejs
In vuejs, you can delete the properties of an object through "Vue.delete(target, key)". The specific method of deleting properties is such as "Vue.delete(this.namelist,'name');".
The operating environment of this article: Windows 7 system, Vue version 2.9.6, Dell G3 computer.
How to delete attributes in vuejs?
Vue.delete() deletes the properties of the object
Vue.delete( target, key )
data : { namelist : { id : 1, name : '叶落森' } }
// 删除name delete this.namelist.name;//js方法 Vue.delete(this.namelist,'name');//vue方法
Recommended learning: "vue tutorial"
The above is the detailed content of How to delete attributes in vuejs. For more information, please follow other related articles on the PHP Chinese website!