scopewu / qrcode.vue

A Vue.js component to generate qrcode. Supports both Vue 2 and Vue 3. 一款同时支援 Vue 2 和 Vue 3 的二维码组件。
https://qr-vue.tie.pub
MIT License
711 stars 87 forks source link

Does the generation of QR code support writing and carrying Logo Icon #36

Closed ptks123 closed 3 years ago

scopewu commented 3 years ago

Hi @ptks123, Now it not supported in qrcode.vue. Consider adding support in subsequent releases. As a temporary behavior, you can use CSS styles.

<div class="relative">
  <qrcode-vue :value="value" />
  <div class="absolute">
    <img src="logo">
  </div>
</div>