Introduction
Event modifiers help control how events behave in your app. They make it easy to stop default actions or stop events from spreading without extra code.
When you want to stop a form from submitting and refreshing the page.
When clicking a button inside a link should not follow the link.
When you want to prevent a parent element from reacting to a child's click.
When you want to keep your event handlers clean and simple.