记录element 手机端menu需要点击两次才跳转的问题解决方法
1、在el-menu中添加点击事件 @click.native=“jump($event)”
jump($event){
let flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i);
if(flag){
// alert($event.path[2].hash)
this.$router.push($event.path[2].hash)
}
},