1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-26 03:21:17 +03:00
elk/components/status/StatusBody.vue

14 lines
258 B
Vue
Raw Normal View History

2022-11-14 10:20:07 +08:00
<script setup lang="ts">
import type { Status } from 'masto'
2022-11-21 05:21:53 +08:00
const { status } = defineProps<{
2022-11-14 10:20:07 +08:00
status: Status
}>()
</script>
<template>
2022-11-21 05:21:53 +08:00
<div class="status-body">
2022-11-24 14:18:05 +08:00
<ContentRich :content="status.content" :emojis="status.emojis" />
2022-11-21 05:21:53 +08:00
</div>
2022-11-14 10:20:07 +08:00
</template>