1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00
elk/components/status/StatusBody.vue
2022-11-24 14:18:05 +08:00

14 lines
258 B
Vue

<script setup lang="ts">
import type { Status } from 'masto'
const { status } = defineProps<{
status: Status
}>()
</script>
<template>
<div class="status-body">
<ContentRich :content="status.content" :emojis="status.emojis" />
</div>
</template>