1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-03 01:08:07 +09:00
elk/pages/explore.vue

23 lines
473 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
2022-11-28 23:25:32 +09:00
const { t } = useI18n()
2022-11-25 20:48:48 +09:00
useHead({
2022-11-28 23:25:32 +09:00
title: () => t('nav_side.explore'),
2022-11-25 20:48:48 +09:00
})
2022-11-17 22:09:05 +09:00
</script>
<template>
<MainContent>
<template #title>
2022-11-28 23:25:32 +09:00
<div i-ri:hashtag h-6 mr-1 /><span>{{ t('nav_side.explore') }}</span>
2022-11-17 22:09:05 +09:00
</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>