Prevent on click on parent when clicking button inside div

前端 未结 5 1842
悲哀的现实
悲哀的现实 2020-12-29 02:03

Is it possible to prevent the function on the

element from running when clicking the button inside the div?

When clicking the button element

5条回答
  •  無奈伤痛
    2020-12-29 02:47

    Have a look at Event Modifiers in the Vue.js v2 docs (v3 docs here), v-on:click.stop will stop that click from propagating or "bubbling" up to the parent element.

提交回复
热议问题