样式绑定.html 590 B

1234567891011121314151617181920212223242526272829303132
  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. <body>
  10. <style>
  11. .active {
  12. width: 100px;
  13. height: 100px;
  14. background: green;
  15. }
  16. </style>
  17. <div id="myApp">
  18. <div v-bind:class="{ active: isActive }"></div>
  19. </div>
  20. <script>
  21. var myApp = new Vue({
  22. el: '#myApp',
  23. data: {
  24. isActive: true
  25. },
  26. });
  27. </script>
  28. </body>
  29. </html>