[Vuejs]-Vuejs update a list in reactive manner

0👍

On your “viewAndUpdateDish” component after your update logic you can do the following:
this.$emit('clickedUpdate',yourResturantId);

then on your parent component make sure you are listening to the “clickedUpdate” event:

<update-dish @clickedUpdate="loadDishes($event)"></update-dish> .

Leave a comment