From 77f54d057471c140559db48b29f2e3d4811a2a8b Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 28 May 2026 12:02:34 +0200 Subject: [PATCH] feat: add copy PNG to clipboard button New button next to Download PNG writes the rendered QR as a PNG Blob to the system clipboard via the async Clipboard API, with a brief in-button confirmation (Copied!) or error state. --- src/App.vue | 30 ++++++++++++++++++++++++++++-- src/composables/useQrCode.ts | 9 ++++++++- src/style.css | 30 +++++++++++++++++++++++++++++- 3 files changed, 65 insertions(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index 2826291..87d9dde 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@