提交 26f251e1 编写于 作者: 无木

fix(qrcode): qrcode not displayed properly

fixed: #1026
上级 1214b7c3
......@@ -4,7 +4,7 @@
</div>
</template>
<script lang="ts">
import { defineComponent, watch, PropType, ref, unref } from 'vue';
import { defineComponent, watch, PropType, ref, unref, onMounted } from 'vue';
import { toCanvas, QRCodeRenderersOptions, LogoType } from './qrcodePlus';
import { toDataURL } from 'qrcode';
import { downloadByUrl } from '/@/utils/file/download';
......@@ -93,16 +93,18 @@
});
}
onMounted(createQrcode);
// 监听参数变化重新生成二维码
watch(
props,
() => {
createQrcode()
createQrcode();
},
{
deep: true,
}
)
);
return { wrapRef, download };
},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册