Skip to content
Snippets Groups Projects
Commit c8a5494f authored by Emmanuel Salomon's avatar Emmanuel Salomon :fist:
Browse files

Get avatar from localstorage

parent 01627c26
No related branches found
No related tags found
No related merge requests found
<template functional> <template>
<button <button
type="button" type="button"
class="inline-flex items-center relative px-2 dark:border-gray-500 border-2 rounded-full hover:shadow-lg focus:outline-none focus:ring-2 transition-shadow" class="inline-flex items-center relative px-2 dark:border-gray-500 border-2 rounded-full hover:shadow-lg focus:outline-none focus:ring-2 transition-shadow"
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
<fa icon="bars" class="ml-2 text-gray-500" /> <fa icon="bars" class="ml-2 text-gray-500" />
<div class="flex items-center h-10 w-10 pl-3"> <div class="flex items-center h-10 w-10 pl-3">
<fa icon="user-circle" class="text-3xl" /> <img v-if="user" :src="user.avatar_url" class="rounded-full" />
<fa v-else icon="user-circle" class="text-3xl" />
</div> </div>
</button> </button>
</template> </template>
...@@ -15,5 +16,15 @@ ...@@ -15,5 +16,15 @@
<script> <script>
export default { export default {
name: 'LayoutHeaderMenuAvatar', name: 'LayoutHeaderMenuAvatar',
data() {
return {
user: null,
}
},
mounted() {
if (localStorage.getItem('netlify-cms-user')) {
this.user = JSON.parse(localStorage.getItem('netlify-cms-user'))
}
},
} }
</script> </script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment