前端生成二维码时,使用的 qrcodejs2 插件在vue中编译
报错:
_android not work
Cannot read property '_android' of undefine
解决方法:
https://github.com/davidshimjs/qrcodejs/issues/148
https://github.com/davidshimjs/qrcodejs/issues/113
使用 '未压缩包',修改源码:
将:if (this._android && this._android <= 2.1)
改为:if (this && this._android <= 2.1)