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