From 2bb71653acb3d9e267f38e11ebd304339c0b12f6 Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Thu, 1 May 2025 21:32:15 +0800 Subject: [PATCH] New contact QR scan view for Capacitor version --- src/router/index.ts | 5 + src/views/ContactQRScanShowView.vue | 6 +- src/views/ContactQRScanView.vue | 426 ++++++++++++++++++++++++++++ 3 files changed, 434 insertions(+), 3 deletions(-) create mode 100644 src/views/ContactQRScanView.vue diff --git a/src/router/index.ts b/src/router/index.ts index a359a484..f82dccd0 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -87,6 +87,11 @@ const routes: Array = [ name: "contact-qr", component: () => import("../views/ContactQRScanShowView.vue"), }, + { + path: "/contact-qr-scan", + name: "contact-qr-scan", + component: () => import("../views/ContactQRScanView.vue"), + }, { path: "/contacts", name: "contacts", diff --git a/src/views/ContactQRScanShowView.vue b/src/views/ContactQRScanShowView.vue index d925a22c..c1bb9823 100644 --- a/src/views/ContactQRScanShowView.vue +++ b/src/views/ContactQRScanShowView.vue @@ -83,12 +83,12 @@ >
- +
{{ error }} diff --git a/src/views/ContactQRScanView.vue b/src/views/ContactQRScanView.vue new file mode 100644 index 00000000..c7a4b68a --- /dev/null +++ b/src/views/ContactQRScanView.vue @@ -0,0 +1,426 @@ + + + + + \ No newline at end of file