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. .blue{
    14. background-color: blue;
    15. }
    16. .yellow{
    17. background-color: yellow;
    18. }
    19. .width{
    20. width: 100px;
    21. }
    22. </style>
    23. </head>
    24. <body>
    25. <div id="app">
    26. 通过v-bind控制样式
    27. <div class="myclass" v-bind:class="{red:tmp}"> </div>
    28. </br>
    29. 加入computed来控制
    30. <div class="myclass" :class="myclass1"></div>
    31. </br>
    32. 加入v-model来控制
    33. <div class="myclass" :class="mycolor"></div>
    34. </br>
    35. <button type="button" @click="tmp=!tmp"> 点我 </button>
    36. <input type="text" v-model="mycolor"></input>
    37. </div>
    38. </body>
    39. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    40. <script>
    41. new Vue({
    42. //指定作用于那一个div
    43. el:'#app',
    44. //属性
    45. data:{
    46. tmp:false,
    47. mycolor:'yellow'
    48. },
    49. computed:{
    50. myclass1:function(){
    51. console.log(111);
    52. return {
    53. red:this.tmp,
    54. width:this.tmp
    55. }
    56. }
    57. }
    58. });
    59. </script>
    60. </html>