Advertisement
tomuwhu

afh

Mar 9th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <template>
  2.   <div id="app">
  3.     <svg>
  4.       <circle
  5.         class="c"
  6.         v-for="i in 6"
  7.         :key="i"
  8.         :fill="c[i]"
  9.         :cx="40*i+30"
  10.         cy="40"
  11.         r="20"
  12.         @click="f(i)"
  13.       ></circle>
  14.     </svg>
  15.   </div>
  16. </template>
  17.  
  18. <script>
  19. export default {
  20.   name: "App",
  21.   data: () => ({
  22.     c: Array(7).fill("red")
  23.   }),
  24.   methods: {
  25.     f(i) {
  26.       this.$set(this.c, i, "blue");
  27.     }
  28.   }
  29. };
  30. </script>
  31.  
  32. <style>
  33. circle {
  34.   cursor: pointer;
  35. }
  36. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement