Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 4, 2020 11:18
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/7f86fda1abf35caa02f63f417e5b1cec to your computer and use it in GitHub Desktop.
Save PKTseng/7f86fda1abf35caa02f63f417e5b1cec to your computer and use it in GitHub Desktop.
修飾符-box
<div id="app">
<div class="box" @click="msg = 'a'">
<div class="box" @click="msg = 'b'">
<div class="box" @click="msg = 'c'">
</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