Blog/Components/Pages/QRCodeGenerator.razor.js 258 B · 11 lines · raw · history

1 import { getById } from '/common.module.js';
2 import {QRCode} from '/qrcode.js';
3
4 const qrcode = new QRCode("qrcode",
5 "https://bes.is/");
6
7 const input = getById("input");
8 input.oninput = () => {
9 const value = input.value;
10 qrcode.makeCode(value);
11 }