import { getById } from '/common.module.js'; import {QRCode} from '/qrcode.js'; export function onLoad() { var qrcode = new QRCode("qrcode", "https://bes.is/"); const input = getById("input"); input.oninput = () => { const value = input.value; qrcode.makeCode(value); } }