We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when i try in svelte it not work.... please anyone help me to use it on svelteJs
The text was updated successfully, but these errors were encountered:
I have just converted https://github.com/kozakdenys/qr-code-styling to a Svelte action and added support for reactivity. check here https://www.npmjs.com/package/svelte-qrcode-action
Sorry, something went wrong.
made it work with onMount and dynamic import !
let qrcc; onMount(async () => { const module = await import('qr-code-styling') const QRCodeStyling = module.default const qrCode = new QRCodeStyling({ options }); let blob = await qrCode.getRawData() qrcc = URL.createObjectURL(blob); });
In your component : {#await qrcc then qrcc}<img src={qrcc} alt="your alt" />{/await}
{#await qrcc then qrcc}<img src={qrcc} alt="your alt" />{/await}
No branches or pull requests
when i try in svelte it not work.... please anyone help me to use it on svelteJs
The text was updated successfully, but these errors were encountered: