Sometimes, we want to delete property from a data object with Vue.js.
In this article, we’ll look at how to delete property from a data object with Vue.js.
How to delete property from a data object with Vue.js?
To delete property from a data object with Vue.js, we can use the this.$delete
method.
For instance, we write
this.$delete(this.users, "foo");
in our component to remove the foo
property from the this.users
object.
Conclusion
To delete property from a data object with Vue.js, we can use the this.$delete
method.