mirror of https://github.com/elk-zone/elk.git
21 lines
410 B
Vue
21 lines
410 B
Vue
<script setup lang="ts">
|
|
const paginator = useMasto().trends.getStatuses()
|
|
|
|
useHead({
|
|
title: 'Explore',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<div i-ri:hashtag h-6 mr-1 /><span>Explore</span>
|
|
</template>
|
|
|
|
<slot>
|
|
<!-- TODO: Tabs for trending statuses, tags, and links -->
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|