1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 04:09:10 +01:00
elk/components/conversation/ConversationCard.vue
2022-11-18 17:37:22 +08:00

18 lines
451 B
Vue

<script setup lang="ts">
import type { Conversation } from 'masto'
const props = defineProps<{
conversation: Conversation
}>()
</script>
<template>
<div flex flex-col gap-2>
<div flex gap-2>
With
<AccountInlineInfo v-for="account in conversation.accounts" :key="account.id" :account="account" />
</div>
<StatusCard v-if="conversation.lastStatus" :status="conversation.lastStatus" :actions="false" />
</div>
</template>