finish register special

This commit is contained in:
2020-03-22 17:44:43 +01:00
parent 3f96cc6fe3
commit 18d0841a7d
34 changed files with 2190 additions and 118 deletions

View File

@@ -0,0 +1,18 @@
<template>
<div>
<h1>{{ authUser.data.attributes.name }}</h1>
</div>
</template>
<script>
import { mapGetters } from 'vuex'
export default {
name: "Profil",
computed: {
...mapGetters({
authUser: 'authUser',
})
},
}
</script>