[Vuejs]-How to prevent event propagation to the parent element? @input.stop doesn't work. (NuxtJS)

3👍

It was just trial and error for me, the following prevents the active toggle:

@click.stop
@keyup.prevent

when applied to the v-text-field within a v-expansion-panel-header.

Codepen

Leave a comment