1
0
elk/pages/explore.vue

21 lines
410 B
Vue
Raw Normal View History

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