From a5f800ef7423eaac10cdc07fa1a363b61ebfe1b6 Mon Sep 17 00:00:00 2001 From: padreug Date: Thu, 18 Sep 2025 22:34:29 +0200 Subject: [PATCH] Enhance SendDialog and WalletPage with QR code scanning integration - Added initialDestination prop to SendDialog for pre-filling the destination field. - Implemented a watcher to update the destination field when initialDestination changes. - Integrated QRScanner component into WalletPage, allowing users to scan QR codes for payment destinations. - Updated SendDialog to accept scanned destination and improved user feedback with toast notifications. These changes streamline the payment process by enabling QR code scanning directly within the wallet interface. --- src/modules/wallet/components/SendDialog.vue | 12 +++- src/modules/wallet/views/WalletPage.vue | 64 ++++++++++++++++++-- 2 files changed, 70 insertions(+), 6 deletions(-) diff --git a/src/modules/wallet/components/SendDialog.vue b/src/modules/wallet/components/SendDialog.vue index c7dc4f1..1026275 100644 --- a/src/modules/wallet/components/SendDialog.vue +++ b/src/modules/wallet/components/SendDialog.vue @@ -1,5 +1,5 @@