12 lines
291 B
Vue
12 lines
291 B
Vue
<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 {};
|
|
</script> |