4_v-bind.html 844 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <script src="./js/vue.js"></script>
  8. <style>
  9. .active{
  10. font-size: 50px;
  11. font-weight: bold;
  12. color: red;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="app">
  18. <img v-bind:src="imgSrc" alt="">
  19. <!-- <div v-bind:class="a"> hello world</div> -->
  20. <div v-bind:class="{'active':isActive}">hello world</div>
  21. <div :class="{'active':isActive}">hello world</div>
  22. </div>
  23. <script>
  24. new Vue({
  25. el:"#app",
  26. data:{
  27. imgSrc:"./img/logo.png",
  28. a:"active",
  29. isActive:true
  30. }
  31. })
  32. </script>
  33. </body>
  34. </html>