Some wprk on auth code

This commit is contained in:
Karolis2011
2021-08-10 10:48:40 +03:00
parent e498f41f95
commit b1935f0ffb
10 changed files with 266 additions and 100 deletions

View File

@@ -0,0 +1,14 @@
<template>
<h1>Hello there</h1>
<!-- {{ $store.state.auth.tokenData }} -->
{{ $store.getters["auth/isValid"] }}
<br />
Your name is: {{ $store.getters["auth/name"] }}<br />
Your email is: {{ $store.getters["auth/email"] }}<br />
</template>
<script>
export default {
name: "Home page",
};
</script>