You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import QRcode from 'qrcode'
QRcode.toDataURL(text.value).then(url => {
console.log(url)
})
here is the mistake:
TypeError: r.put is not a function
at qrcode.js:240:12
at Array.forEach ()
at createData (qrcode.js:238:12)
at createSymbol (qrcode.js:423:20)
at qrcode$1.create (qrcode.js:497:10)
at browser.js:53:29
at new Promise ()
at renderCanvas (browser.js:51:12)
at r (App.vue:5:1)
at callWithErrorHandling (runtime-core.esm-bundler.js:195:19)
it seems lost the method in bit-buffer.js while build project
BitBuffer.prototype = {
get: function (index) {
const bufIndex = Math.floor(index / 8)
return ((this.buffer[bufIndex] >>> (7 - index % 8)) & 1) === 1
},
put: function (num, length) {
for (let i = 0; i < length; i++) {
this.putBit(((num >>> (length - i - 1)) & 1) === 1)
}
},
getLengthInBits: function () {
return this.length
},
putBit: function (bit) {
const bufIndex = Math.floor(this.length / 8)
if (this.buffer.length <= bufIndex) {
this.buffer.push(0)
}
if (bit) {
this.buffer[bufIndex] |= (0x80 >>> (this.length % 8))
}
this.length++
}
}
The text was updated successfully, but these errors were encountered:
I used vite to build my project
here is the mistake:
TypeError: r.put is not a function
at qrcode.js:240:12
at Array.forEach ()
at createData (qrcode.js:238:12)
at createSymbol (qrcode.js:423:20)
at qrcode$1.create (qrcode.js:497:10)
at browser.js:53:29
at new Promise ()
at renderCanvas (browser.js:51:12)
at r (App.vue:5:1)
at callWithErrorHandling (runtime-core.esm-bundler.js:195:19)
it seems lost the method in bit-buffer.js while build project
The text was updated successfully, but these errors were encountered: