hjl19911127 / vue-drawer-layout

A simple DrawerLayout component for Vue.js.
http://share.codehuang.com/vue-drawer-layout
MIT License
408 stars 86 forks source link

微信内置浏览器无法使用 #39

Closed wiootk closed 4 years ago

wiootk commented 4 years ago

在谷歌浏览器及其手机模拟模式可以使用,但是在微信浏览器中无法使用 经排查发现是无法正确识别微信浏览器 解决方案:helper.jssupportsTouchDetector函数添加是否是微信浏览器的判断

export const supportsTouchDetector = cacheFunctionWrapper(() =>('ontouchstart' in window)||(navigator.userAgent.toLowerCase().match(/MicroMessenger/i)=="micromessenger"));