2022-11-14 03:33:09 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Status } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
timelines: Status[]
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<template v-for="status of timelines" :key="status.id">
|
2022-12-06 11:07:17 +00:00
|
|
|
<StatusCard :status="status" border="t base" />
|
2022-11-14 03:33:09 +00:00
|
|
|
</template>
|
|
|
|
</template>
|