elk/components/timeline/TimelineList.vue

14 lines
275 B
Vue
Raw Normal View History

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