1👍
✅
Use the splice
method to remove the item from an array
First get the index of the item
let index = this.form.products.indexOf(product);
Then remove it using splice
this.form.products.splice(index,1);
Source:stackexchange.com