1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-16 08:59:59 +01:00
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>