[Vuejs]-Vue.js how to toggle html tag display on mousehover

2👍

You are toggling the displayInfo on mouseover, now you will also have to toggle it on mouseleave.

<v-btn v-on:mouseover="toggleInfo" v-on:mouseleave="toggleInfo" dark small round color="green">2018</v-btn>

Leave a comment