As in the title, I want to know if there is alternative method for Vue.set() for changing the entire object instead of one property.
Vue.set():
this.$set(this.object, 'price', 420);
What I'm looking for:
this.$something(this.object, { 'price': 420 })
Thanks!
Try with spread syntax
this.object = {
...this.object,
price: 420,
}