Skip to content Skip to sidebar Skip to footer

Unexpected Behavior On Child Div Click Event

I have defined different click events for a div and a child span:

Solution 1:

Add the .stop modifier to your @click handler to stop the event from propagating:

<span @click.stop="removeSection(index,key)" ...>

Post a Comment for "Unexpected Behavior On Child Div Click Event"