crm/frontend/src/components/UserAvatar.vue
2023-09-28 18:39:43 +05:30

21 lines
355 B
Vue

<template>
<Avatar
:label="getUser(user).full_name"
:image="getUser(user).user_image"
v-bind="$attrs"
/>
</template>
<script setup>
import { usersStore } from '@/stores/users'
import { Avatar } from 'frappe-ui'
const props = defineProps({
user: {
type: String,
default: null,
},
})
const { getUser } = usersStore()
</script>