elk/pages/explore.vue

17 lines
371 B
Vue
Raw Normal View History

2022-11-17 13:09:05 +00:00
<script setup lang="ts">
const paginator = masto.trends.getStatuses()
</script>
<template>
<MainContent>
<template #title>
<div i-ri:hashtag h-6 mr-1 /><span>Explore</span>
</template>
2022-11-24 06:42:26 +00:00
2022-11-17 13:09:05 +00:00
<slot>
<!-- TODO: Tabs for trending statuses, tags, and links -->
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>