scholtz/qrcode-vue3

How to modify the text content of the download button?

thousmile opened this issue · 2 comments

Replace "download" text

image

support a proposal

<QRCodeVue3 :value="qrValue" :key="qrValue" :width="200" :height="200" :download="true"
downloadButton="bn-hidden"
function download() {
let bn = document.getElementsByClassName('bn-hidden')[0] as HTMLButtonElement
bn.click()
}

.bn-hidden {
display: none;
}