Html
<i class="icon" @mouseenter="enter(index)" @mouseleave="leave()"></i>
JS
methods:{ enter(index){ this.seen = true; this.current = index; }, leave(){ this.seen = false; this.current = null; } }
2024-03-11 20:15:07
Html
<i class="icon" @mouseenter="enter(index)" @mouseleave="leave()"></i>
JS
methods:{ enter(index){ this.seen = true; this.current = index; }, leave(){ this.seen = false; this.current = null; } }