index.html 916 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Vue中的样式绑定</title>
  6. <script src="../vue.js"></script>
  7. <style>
  8. .activated {
  9. color: #f40808;
  10. }
  11. .activated-one {
  12. color: #000000;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="app">
  18. <div
  19. @click="handleDivClick" :class="[activated]"
  20. >
  21. Hello world
  22. </div>
  23. <div :style="styleObj" @click="handleDivClick">
  24. China
  25. </div>
  26. </div>
  27. <script>
  28. var vm = new Vue({
  29. el: "#app",
  30. data: {
  31. activated: "",
  32. styleObj: {
  33. color: "black"
  34. }
  35. },
  36. methods: {
  37. handleDivClick: function (){
  38. this.activated = this.activated === "activated" ? "" : "activated"
  39. this.styleObj.color = this.styleObj.color === "black" ? "red":"black"
  40. }
  41. }
  42. })
  43. </script>
  44. </body>
  45. </html>