I'm facing an issue where I want to add a button on a clickable card, but clicking the button also triggers the card click event. Here's my current code snippet:
<v-card @click="show = !show">
<v-img src="https://cdn.vuetifyjs.com/images/cards/sunshine.jpg"></v-img>
<v-btn color="primary" @click="doSomething = !doSomething">Click me!</v-btn>
</v-card>
Any suggestions on how I can solve this problem? Thank you!