koel/resources/assets/js/components/user/UserAvatar.vue

16 lines
350 B
Vue
Raw Normal View History

2024-01-18 11:13:05 +00:00
<template>
2024-04-04 22:20:42 +00:00
<img
:alt="`Avatar of ${user.name}`"
:src="user.avatar"
:title="user.name"
class="rounded-full aspect-square bg-k-bg-primary object-cover"
>
2024-01-18 11:13:05 +00:00
</template>
<script setup lang="ts">
import { toRefs } from 'vue'
const props = defineProps<{ user: Pick<User, 'name' | 'avatar'> }>()
const { user } = toRefs(props)
</script>