当前位置: 首页 > 工具软件 > jump_menu > 使用案例 >

记录element 手机端menu需要点击两次才跳转的问题解决方法

庄嘉
2023-12-01

记录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)
   }
},
 类似资料: