elk/pages/explore.vue

21 lines
410 B
Vue
Raw Normal View History

2022-11-17 13:09:05 +00:00
<script setup lang="ts">
const paginator = useMasto().trends.getStatuses()
2022-11-25 11:48:48 +00:00
useHead({
title: 'Explore',
})
2022-11-17 13:09:05 +00:00
</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>