Home > Web Front-end > Vue.js > body text

How to delete attributes in vuejs

藏色散人
Release: 2023-01-13 00:45:39
Original
4896 people have browsed it

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');".

How to delete attributes in vuejs

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 )
Copy after login

 data : {
        namelist : {
           id : 1, 
           name : '叶落森'
        }       
}
Copy after login
// 删除name
delete this.namelist.name;//js方法
Vue.delete(this.namelist,'name');//vue方法
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template