hjl19911127 / vue-drawer-layout

A simple DrawerLayout component for Vue.js.

Home Page:http://share.codehuang.com/vue-drawer-layout

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

微信内置浏览器无法使用

wiootk opened this issue · comments

commented

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

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