diff --git a/src/components/Profile.vue b/src/components/Profile.vue index 49d1203..9e20f0e 100644 --- a/src/components/Profile.vue +++ b/src/components/Profile.vue @@ -7,6 +7,7 @@

Profile

Token validity ({{tokenValidity}})

Refresh token validity ({{refreshTokenValidity}})

+

access_token ({{access_token}})

{{profile.id}}

{{ errorMsg }}

@@ -59,6 +60,9 @@ profile() { return this.$store.state.profile; }, + access_token() { + return this.$store.state.access_token; + } }, };