<html>
<head>
<style>
.myclass
{
width: 100%;
height: 80px;
background-color: blue;
}
.red{
background-color: red;
}
</style>
</head>
<body>
<div id="app">
<div class="myclass" v-bind:class="{red:tmp}"> </div>
</br>
<div class="myclass"></div>
</br>
<div class="myclass"></div>
</br>
<button type="button" @click="tmp=!tmp"> 点我 </button>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
new Vue({
//指定作用于那一个div
el:'#app',
//属性
data:{
tmp:false
},
});
</script>
</html>