// 本文件由FirstUI授权予四川政采招投标咨询有限公司(会员ID: 163,营业执照号: 9 151 0 13 13 3 2006 19 3K)专用,请尊重知识产权,勿私下传播,违者追究法律责任。 import QRCode from './lib/QRCode.js' import ErrorCorrectLevel from './lib/ErrorCorrectLevel.js' var qrcode = function(data, opt) { opt = opt || {}; var qr = new QRCode(opt.typeNumber || -1, opt.errorCorrectLevel || ErrorCorrectLevel.H); qr.addData(data); qr.make(); return qr; }; qrcode.ErrorCorrectLevel = ErrorCorrectLevel; export default qrcode;