首页  >  文章  >  web前端  >  vue.js如何实现移入移出效果

vue.js如何实现移入移出效果

王林
王林原创
2021-09-30 14:30:252916浏览

vue.js实现移入移出效果的方法:【methods:{enter(index){this.seen = true;this.current = index;},leave(){this.seen = false;this.cur...】。

vue.js如何实现移入移出效果

本文操作环境:windows10系统、vue 2.5.2、thinkpad t480电脑。

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;
      }
    }

推荐学习:php培训

以上是vue.js如何实现移入移出效果的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn