vue中使用@mousedown、@mouseenter等鼠标事件失效解决办法

在 Vue 框架中,使用 @click 事件处理点击无误,但遇到 @mouseenter 和 @mousedown 等非点击事件时,事件监听失效。解决方法是在非点击事件上添加 .native修饰符,如 @mouseenter.native,以确保在组件元素上正确触发。此问题涉及到 Vue 的事件绑定机制和事件修饰符的使用。
摘要由CSDN通过智能技术生成

在vue中,使用@click点击事件没有任何问题

 <el-button type="primary" icon="el-icon-plus" @click="searchBtn">添加用户</el-button>

但是将@click替换为@mouseenter、@mousedown等鼠标事件[非鼠标点击事件]时,发现事件不触发(也就是失效了)

此时应该在@mouseenter、@mouseenter等鼠标事件加上native属性就好了

 <el-button type="primary" icon="el-icon-plus" @mouseenter.native="searchBtn">添加用户
</el-button>

 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值