v-bind.html 739 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <title></title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <script src="https://unpkg.com/vue/dist/vue.js"></script>
  8. <link href="../css/style.css" rel="stylesheet"> </head>
  9. <style>
  10. .class1 {
  11. background: #444;
  12. color: #eee;
  13. }
  14. </style>
  15. <body>
  16. <div id="app">
  17. <label for="r1">修改颜色</label><input type="checkbox" v-model="use" id="r1">
  18. <br><br>
  19. <div v-bind:class="{'class1': use}">
  20. v-bind:class 指令
  21. </div>
  22. <div :class="{'class1': use}">
  23. v-bind:class 指令
  24. </div>
  25. </div>
  26. <script>
  27. new Vue({
  28. el: '#app',
  29. data: {
  30. use: false
  31. }
  32. });
  33. </script>
  34. </body>
  35. </html>