vue.js实现移入移出事件的具体代码:
html代码:
<i class="icon" @mouseenter="enter(index)" @mouseleave="leave()"></i>
逻辑代码:
methods:{
enter(index){
this.seen = true;
this.current = index;
},
leave(){
this.seen = false;
this.current = null;
}
}
