I'm trying to do multiple things within button click (using Vuetify framework):
<v-btn flat color="indigo darken-3"
@click.stop="dialogDelete = true"
@click.stop="deleteTemporaryId = offer.id">Delete</v-btn>
But it seems wrong, I've got an error:
duplicate attribute: @click.stop
Anyone knows how to write correctly in Vuejs? Can I ask also multiple functions on @click?
Thank you for help