exportdefault{computed:{device(){returnthis.$store.state.app.device}},mounted(){// In order to fix the click on menu on the ios device will trigger the mouseleave bug// https://github.com/PanJiaChen/vue-element-admin/issues/1135this.fixBugIniOS()},methods:{fixBugIniOS(){const$subMenu=this.$refs.subMenuif($subMenu){consthandleMouseleave=$subMenu.handleMouseleave$subMenu.handleMouseleave=(e)=>{if(this.device==='mobile'){return}handleMouseleave(e)}}}}}