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