elk/pages/explore.vue

21 lines
405 B
Vue
Raw Normal View History

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