refactor: use paginator for explore

This commit is contained in:
三咲智子 2023-01-08 16:27:38 +08:00
parent 3d25243166
commit 6308aa5c9a
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
4 changed files with 43 additions and 68 deletions

View file

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