Home > Article > Web Front-end > How to delete objects in vuejs
How to delete objects in vuejs: 1. Open the corresponding js code part; 2. Delete the object attributes through the "Vue.delete(this.namelist,'name');" code.
The operating environment of this article: Windows 7 system, Vue2.9.6, Dell G3 computer.
How to delete objects 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: "The latest 5 vue.js videos Tutorial selection》
The above is the detailed content of How to delete objects in vuejs. For more information, please follow other related articles on the PHP Chinese website!