1
0
mirror of https://github.com/elk-zone/elk synced 2025-01-06 09:52:49 +09:00
elk/components/status/StatusBody.vue

14 lines
258 B
Vue
Raw Normal View History

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