elk/pages/explore.vue
2022-11-29 21:15:53 +01:00

26 lines
588 B
Vue

<script setup lang="ts">
const paginator = useMasto().trends.getStatuses()
const { t } = useI18n()
useHead({
title: () => t('nav_side.explore'),
})
</script>
<template>
<MainContent>
<template #title>
<NuxtLink to="/explore" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:hashtag />
<span>{{ t('nav_side.explore') }}</span>
</NuxtLink>
</template>
<slot>
<!-- TODO: Tabs for trending statuses, tags, and links -->
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>