elk/pages/explore.vue

19 lines
453 B
Vue
Raw Normal View History

2022-11-17 13:09:05 +00:00
<script setup lang="ts">
const paginator = masto.trends.getStatuses()
</script>
<template>
<MainContent>
<template #title>
<div i-ri:hashtag h-6 mr-1 /><span>Explore</span>
</template>
<template #actions>
2022-11-23 08:08:49 +00:00
<div i-ri:equalizer-fill mr-1 h-6 />
2022-11-17 13:09:05 +00:00
</template>
<slot>
<!-- TODO: Tabs for trending statuses, tags, and links -->
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>