blob: 560b103777af60b5f000a83dee09eaade1cc1568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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);
}
}
|