首页 > 编程 > JavaScript > 正文

vue实现鼠标移入移出事件代码实例

2019-11-19 11:56:15
字体:
来源:转载
供稿:网友

本文实例为大家分享了vue实现鼠标移入移出事件的具体代码,供大家参考,具体内容如下

<div class="index_tableTitle clearfix" v-for="(item,index) in table_tit">     <div class="indexItem">      <span :title="item.name">{{item.name}}</span>      <span class="mypor">       <i class="icon" @mouseenter="enter(index)" @mouseleave="leave()"></i>       <div v-show="seen&&index==current" class="index-show">        <div class="tip_Wrapinner">{{item.det}}</div>       </div>      </span>     </div>    </div>
export default {  data(){   return{    seen:false,    current:0   }  },  methods:{   enter(index){    this.seen = true;    this.current = index;   },   leave(){    this.seen = false;    this.current = null;   }  } } 

以上所述是小编给大家介绍的vue实现鼠标移入移出事件详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对武林网网站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表