mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
15 lines
350 B
Vue
15 lines
350 B
Vue
<template>
|
|
<img
|
|
:alt="`Avatar of ${user.name}`"
|
|
:src="user.avatar"
|
|
:title="user.name"
|
|
class="rounded-full aspect-square bg-k-bg-primary object-cover"
|
|
>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { toRefs } from 'vue'
|
|
|
|
const props = defineProps<{ user: Pick<User, 'name' | 'avatar'> }>()
|
|
const { user } = toRefs(props)
|
|
</script>
|