[Vue.js] Deleting Items and Modifiers //HTML - //JS methods: { deleteItem: function(id) { if(this.cart[id].qty > 1){ this.cart[id].qty--; } else { this.cart.splice(id, 1); //remove JS object } } } //modifiers make Bootstrap menu interesting and fun Vue.js 2022.05.11