[Vuejs]-Trigger false to true in vue

2👍

✅

spin is a member of your component, so you need to access it from this:

methods:{
  hit(){
    this.spin = true
}

2👍

You have to set this to refer it:
`

methods:{
  hit(){
    this.spin = true
  }

Leave a comment