elk/components/timeline/TimelineList.vue

14 lines
266 B
Vue
Raw Normal View History

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-11-23 02:16:31 +00:00
<StatusCard :status="status" border="t base" pt-4 />
2022-11-14 03:33:09 +00:00
</template>
</template>