adelriosantiago
adelriosantiago

Reputation: 8134

How to prevent event bubbling in Vuetify FAB buttons

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.

Upvotes: 0

Views: 316

Answers (1)

krybinski
krybinski

Reputation: 79

You can use @click.stop="doTrigger"

Upvotes: 2

Related Questions