element-ui中使用@mouseenter、@mouseleave等不起做用

vue项目中使用element-ui框架,在element标签中使用@mouseenter不起做用。web项目中的写法以下:
<el-button type="primary" @mouseenter="loginBtn()">登陆</el-button>。
移动鼠标,目前不能触发该事件。vue

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

分析缘由:elementUI内部把相关的方法禁止。
依次推论并验证:在非element标签中使用@mouseenter,能正常执行,无需添加native。element-ui

相关文章
相关标签/搜索