elk/components/status/StatusBody.vue

15 lines
351 B
Vue
Raw Normal View History

2022-11-14 02:20:07 +00:00
<script setup lang="ts">
import type { Status } from 'masto'
2022-11-20 21:21:53 +00:00
const { status } = defineProps<{
2022-11-14 02:20:07 +00:00
status: Status
}>()
const { translation } = useTranslation(status)
2022-11-14 02:20:07 +00:00
</script>
<template>
2022-11-20 21:21:53 +00:00
<div class="status-body">
2022-11-25 07:12:49 +00:00
<ContentRichSetup :content="translation.visible ? translation.text : status.content" :emojis="status.emojis" />
2022-11-20 21:21:53 +00:00
</div>
2022-11-14 02:20:07 +00:00
</template>