Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="app">
    <h6>將此範例加上 stopPropagation (防止向外尋找)</h6>
    <div class="p-3 bg-primary" @click="trigger('div')">
      <!-- 新增 event.stopPropagation() -->
      <span class="box" @click.stop="trigger('box')"></span>
    </div>
    
  </div>
  
  
  <!-- development version, includes helpful console warnings -->
  <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</body>
</html>
 
var app = new Vue({
  el: '#app',
  data: {},
  methods: {
    trigger: function(name) {
      console.log(name, '此事件被觸發了')
    }
  }
});
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers