Prevent on click on parent when clicking button in

2020-05-24 18:53发布

Is it possible to prevent the function on the <div> element from running when clicking the button inside the div?

When clicking the button element, the function: toggleSystemDetails should not be triggered? Is this possible in Vue?

<div v-on:click="toggleSystemDetails($event, system.id);" class="grid-tile__list-item" v-for="(system, index) in organization.systems" :key="system.id" :class="{'in-viewport fully-in-viewport': system.inview, 'is-xsmall': system.layout === 'xsmall', 'is-small': system.layout === 'small', 'is-medium': system.layout === 'medium', 'is-large': system.layout === 'large'}">
      <div class="grid-tile__list-item--overlay">
        <button v-on:click="toggleTileOptionsMode($event, system.id, system.name, system.layout)">
          Layout Settings
        </button>
      </div>

标签: vue.js vuejs2
3条回答
等我变得足够好
2楼-- · 2020-05-24 19:36

Have a look at Event Modifiers, v-on:click.stop will stop that click from propagating or "bubbling" up to the parent element.

查看更多
虎瘦雄心在
3楼-- · 2020-05-24 19:39

as mentioned on the link provided by Justin you can .self in the click event

<!-- only trigger handler if event.target is the element itself -->
<!-- i.e. not from a child element -->
<div v-on:click.self="doThat">...</div>
查看更多
我只想做你的唯一
4楼-- · 2020-05-24 19:55

Here is how to master this problem.

Say you have a parent element and some child elements.

1.(1st case) You want the parent click to do not affect the child clicks. Just put at the parent element the .self modifier:

  <div class="parent" @click.self="parent"> <!-- .self modifier -->
    <span class="child" @click="child1">Child1</span>
    <span class="child" @click="child2">Child2</span>
    <span class="child" @click="child3">Child3</span>
  </div>

See it in action here

note: if you remove the .self when you click a child, the parent event will fire too.

2.(2nd case) You have the below code:

  <div @click="parent">
    Click to activate 
    <i class="fa fa-trash" title="delete this" @click="delete_clicked"></i>
  </div>

The problem is:

  1. When you click the icon element the parent click will fire. (you don't want this)
  2. You can NOT use the 1st solution because you want to fire the parent event even if the text "Click to activate" gets clicked.

The solution to this is to put the .stop modifier to the icon element so the parent event will not fire.

See it in action here

查看更多
登录 后发表回答