Reputation: 8134
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
Upvotes: 0
Views: 316
Reputation: 79
You can use @click.stop="doTrigger"
@click.stop="doTrigger"
Upvotes: 2