element-ui中运用@mouseenter、@mouseleave等不起作用

vue项目中运用element-ui框架,在element标签中运用@mouseenter不起作用。web项目中的写法以下:
<el-button type=”primary” @mouseenter=”loginBtn()”>登录</el-button>。
挪动鼠标,现在不能触发该事宜。

修改后的写法以下(触发事宜加上native):
<el-button type=”primary” @mouseenter.native=”loginBtn()”>登录</el-button>。

剖析缘由:elementUI内部把相干的要领制止。
顺次推论并考证:在非element标签中运用@mouseenter,能一般实行,无需增加native。

    原文作者:狂奔的蜗牛
    原文地址: https://segmentfault.com/a/1190000017311468
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞