Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 4, 2020 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PKTseng/5342aa8ee7d77b83230bc79ac7ae5cbd to your computer and use it in GitHub Desktop.
Save PKTseng/5342aa8ee7d77b83230bc79ac7ae5cbd to your computer and use it in GitHub Desktop.
修飾符-box-stop、self
<div id="app">
<div class="box" @click.self="msg = 'c'">
<div class="box" @click.self="msg = 'b'">
<div class="box" @click.stop="msg = 'a'">
</div>
</div>
</div>
<h1>{{msg}}</h1>
</div>
new Vue({
el:"#app",
data:{
msg:''
},
})
.box{
display: inline-block;
min-width: 100px;
min-height: 100px;
padding: 30px;
border: 3px solid red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment