1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 22:26:48 +01:00
elk/components/timeline/TimelineList.vue

14 lines
261 B
Vue

<script setup lang="ts">
import type { Status } from 'masto'
defineProps<{
timelines: Status[]
}>()
</script>
<template>
<template v-for="status of timelines" :key="status.id">
<StatusCard :status="status" border="t base" />
</template>
</template>