mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-21 17:05:22 +03:00
feat: lazy load avatar
This commit is contained in:
parent
2f1c890623
commit
e7fd9be93d
2 changed files with 2 additions and 2 deletions
|
@ -7,5 +7,5 @@ defineProps<{
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<img :src="account.avatar" :alt="account.username" rounded-full bg-gray:10>
|
||||
<img :src="account.avatar" :alt="account.username" loading="lazy" rounded-full bg-gray:10>
|
||||
</template>
|
||||
|
|
|
@ -80,7 +80,7 @@ const timeago = useTimeAgo(() => status.createdAt, {
|
|||
</div>
|
||||
<div flex gap-4>
|
||||
<AccountAvatar mt1 w-12 h-12 :account="status.account" />
|
||||
<div flex="~ col auto">
|
||||
<div flex="~ col 1">
|
||||
<div flex>
|
||||
<StatusAccountDetails :account="status.account" />
|
||||
<div flex-auto />
|
||||
|
|
Loading…
Reference in a new issue