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>
 
h6, .h6 {
    font-size: 1rem;
}
.bg-primary {
    background-color: #4fc08d !important;
}
.box {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    margin: .25rem;
    background-color: #f5f5f5;
    border: 1px solid;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers