mirror of
https://github.com/elk-zone/elk
synced 2025-01-08 02:42:50 +09:00
14 lines
269 B
Vue
14 lines
269 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 gray/10" pt-4 />
|
||
|
</template>
|
||
|
</template>
|