chenqingspring / vue-lottie

Render After Effects animations on Vue based on Bodymovin
MIT License
1.31k stars 281 forks source link

How to enable mouseover handler #48

Closed AdamBD closed 4 years ago

AdamBD commented 4 years ago

Hello,

This is a question, not an issue. I am trying to enable the this.anim.play() to happen on mouseover of the lottie element:

      <lottie
        @mouseenter="play"
        :options="defaultOptions"
        :height="200"
        :width="200"
        @animCreated="handleAnimation"
      />
    </div>

---

    play: function() {
      this.anim.play();
    }
  }
};

But it doesnt seem to work. Any advice?