19 lines
319 B
Vue
19 lines
319 B
Vue
<template>
|
|
<div>
|
|
<h1>{{ authUser.data.attributes.name }}</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'Profil',
|
|
computed: {
|
|
...mapGetters({
|
|
authUser: 'authUser',
|
|
})
|
|
},
|
|
}
|
|
</script>
|