tav-ui
Version:
27 lines (25 loc) • 417 B
JavaScript
const qrcodeProps = {
value: {
type: [String, Array],
default: null
},
options: {
type: Object,
default: null
},
width: {
type: Number,
default: 200
},
logo: {
type: [String, Object],
default: ""
},
tag: {
type: String,
default: "canvas",
validator: (v) => ["canvas", "img"].includes(v)
}
};
export { qrcodeProps };
//# sourceMappingURL=types2.mjs.map