21 lines
355 B
Vue
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>
|