UNPKG

qrcode-vue3

Version:

Add a style and an image to your QR code Vue3

13 lines (10 loc) 227 B
import type { ErrorCorrectionLevel } from "../types"; interface ErrorCorrectionLevels { [key: string]: ErrorCorrectionLevel; } export default { L: "L", M: "M", Q: "Q", H: "H" } as ErrorCorrectionLevels;