Simple Actions can be applied to HTML like objects with simple v-on:click, v-on:keyup.
Modifiers can efficiently execute functions that would have to be done programmatically.
<form v-on:submit.prevent></form>
v-on:submit.prevent will prevent default form from submiting
Event can be added to any semantic element: Button, Div, Accordion.