import { Vue } from 'vue-property-decorator'; import { QRCodeRenderersOptions, LogoType } from './types'; export default class EtQrcode extends Vue { private readonly wrapRef; value: string | any[]; /** * 参数 */ options: QRCodeRenderersOptions; /** * 宽度 */ width: number; /** * 中间logo图标 */ logo: Partial | string; /** * img 不支持内嵌logo */ tag: 'canvas' | 'img'; private url; private createQrcode; /** * 下载二维码 * @public * @property {string} fileName 文件名 */ download(fileName?: string): void; mounted(): void; }