From 73f9d7f9e9a4e48daec329af432a252bb609336c Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Fri, 26 Apr 2024 20:13:44 -0600 Subject: [PATCH] add page to view all claims about a DID (which we'll have to restrict to visible people soon) --- src/App.vue | 4 +- src/libs/endorserServer.ts | 3 +- src/router/index.ts | 5 + src/views/ContactsView.vue | 8 + src/views/DIDView.vue | 337 +++++++++++++++++++++++++++++++++++++ 5 files changed, 355 insertions(+), 2 deletions(-) create mode 100644 src/views/DIDView.vue diff --git a/src/App.vue b/src/App.vue index e01662b..f31139a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -161,7 +161,9 @@ class="flex w-11/12 max-w-sm mx-auto mb-3 overflow-hidden bg-white rounded-lg shadow-lg" >
- {{ notification.title }} + + {{ notification.title }} +

{{ notification.text }}

+ + + Copied DID
diff --git a/src/views/DIDView.vue b/src/views/DIDView.vue new file mode 100644 index 0000000..46f78a0 --- /dev/null +++ b/src/views/DIDView.vue @@ -0,0 +1,337 @@ + + +