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
240 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">
<CommonRichContent :content="status.content" />
</div>
2022-11-14 11:20:07 +09:00
</template>