tav-ui
Version:
31 lines (27 loc) • 506 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
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)
}
};
exports.qrcodeProps = qrcodeProps;
//# sourceMappingURL=types2.js.map