在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>