How do I prevent event bubbling while pressing a Vuetify's FAB buttons?
Example: https://codepen.io/adelriosantiago/pen/bGEXrjV?editors=1010. When pressing the FAB button the card's @click will also trigger.
@click
You can use @click.stop="doTrigger"
@click.stop="doTrigger"