elk/components/status/StatusBody.vue

14 lines
240 B
Vue
Raw Normal View History

2022-11-14 03:20:07 +01:00
<script setup lang="ts">
import type { Status } from 'masto'
2022-11-20 22:21:53 +01:00
const { status } = defineProps<{
2022-11-14 03:20:07 +01:00
status: Status
}>()
</script>
<template>
2022-11-20 22:21:53 +01:00
<div class="status-body">
<CommonRichContent :content="status.content" />
</div>
2022-11-14 03:20:07 +01:00
</template>