2022-11-14 04:33:09 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Attachment } from 'masto'
|
|
|
|
|
|
|
|
const { attachment } = defineProps<{
|
|
|
|
attachment: Attachment
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<template v-if="attachment.type === 'image'">
|
|
|
|
<img
|
|
|
|
class="status-attachment-image"
|
|
|
|
:src="attachment.previewUrl!"
|
|
|
|
:alt="attachment.description!"
|
2022-11-14 15:54:30 +01:00
|
|
|
border="~ border"
|
2022-11-14 04:33:09 +01:00
|
|
|
object-cover rounded-lg
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<div>
|
|
|
|
TODO: {{ attachment }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|