mirror of https://github.com/elk-zone/elk.git
17 lines
371 B
Vue
17 lines
371 B
Vue
<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>
|
|
|
|
<slot>
|
|
<!-- TODO: Tabs for trending statuses, tags, and links -->
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|