fumeapp/tailvue

Push button .stop modifier dont work

ldiellyoungl opened this issue · 3 comments

if i use .stop modifier on pushButton then dont work. what i can do?

i'm not really aware of a stop modifier - can you clarify?

i'm not really aware of a stop modifier - can you clarify?

https://vuejs.org/guide/essentials/event-handling.html#event-modifiers
.stop modifier dont work. im using like this:
<div @click="do_parent()"><PushButton @click.stop="do_child()"></PushButton></div>
nothing happens when i pressed PushButton

not sure event modifier work for the push button click that. The @click is not native Vue event but rather the click emit from the component itself see here