1. <html>
    2. <head>
    3. <style>
    4. .myclass
    5. {
    6. width: 100%;
    7. height: 80px;
    8. background-color: blue;
    9. }
    10. .red{
    11. background-color: red;
    12. }
    13. </style>
    14. </head>
    15. <body>
    16. <div id="app">
    17. <div class="myclass" v-bind:class="{red:tmp}"> </div>
    18. </br>
    19. <div class="myclass"></div>
    20. </br>
    21. <div class="myclass"></div>
    22. </br>
    23. <button type="button" @click="tmp=!tmp"> 点我 </button>
    24. </div>
    25. </body>
    26. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    27. <script>
    28. new Vue({
    29. //指定作用于那一个div
    30. el:'#app',
    31. //属性
    32. data:{
    33. tmp:false
    34. },
    35. });
    36. </script>
    37. </html>