fyne-on/components/account/AccountInfo.vue

26 lines
597 B
Vue
Raw Normal View History

2022-11-13 13:34:43 +08:00
<script setup lang="ts">
2022-11-14 10:20:07 +08:00
import type { Account } from 'masto'
2022-11-13 13:34:43 +08:00
2022-11-21 18:16:04 +08:00
const { link = true } = defineProps<{
2022-11-13 13:34:43 +08:00
account: Account
2022-11-21 18:16:04 +08:00
link?: boolean
2022-11-13 13:34:43 +08:00
}>()
</script>
<template>
<div flex gap-2>
<div p1>
2022-11-21 18:16:04 +08:00
<NuxtLink :to="link ? `/@${account.acct}` : null">
2022-11-17 15:35:42 +08:00
<img :src="account.avatar" rounded w-10 h-10 bg-gray:10>
2022-11-14 10:20:07 +08:00
</NuxtLink>
2022-11-13 13:34:43 +08:00
</div>
2022-11-21 18:16:04 +08:00
<NuxtLink flex flex-col :to="link ? `/@${account.acct}` : null">
2022-11-21 15:14:07 +08:00
<CommonRichContent font-bold :content="account.displayName" />
2022-11-21 14:55:31 +08:00
<p op35 text-sm>
2022-11-13 13:34:43 +08:00
@{{ account.acct }}
</p>
2022-11-14 10:20:07 +08:00
</NuxtLink>
2022-11-14 10:56:48 +08:00
<slot />
2022-11-13 13:34:43 +08:00
</div>
</template>