[Vuejs]-Vue pass value of inputfield, and the reference to the object

1👍

@input="onIngredientInput($event, ingredient)

0👍

you may use watch preoperty to track your preoperty and make changes :

:value=changedIngredient
watch: { changedIngredient:function(value){

// make your changes 
}
}

Leave a comment