1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 22:38:11 +09:00
elk/pages/[[server]]/explore.vue

41 lines
977 B
Vue
Raw Normal View History

2022-11-17 22:09:05 +09:00
<script setup lang="ts">
2022-11-28 23:25:32 +09:00
const { t } = useI18n()
2022-12-11 19:52:36 +09:00
const tabs = $computed(() => [
{
to: `/${currentServer.value}/explore`,
display: t('tab.posts'),
},
{
to: `/${currentServer.value}/explore/tags`,
display: t('tab.hashtags'),
},
{
to: `/${currentServer.value}/explore/links`,
display: t('tab.news'),
},
// This section can only be accessed after logging in
{
to: `/${currentServer.value}/explore/users`,
display: t('tab.for_you'),
disabled: !isMastoInitialised.value || !currentUser.value,
},
2022-12-11 19:52:36 +09:00
] as const)
2022-11-17 22:09:05 +09:00
</script>
<template>
2022-12-31 03:16:23 +09:00
<MainContent>
2022-11-17 22:09:05 +09:00
<template #title>
2023-01-05 08:17:30 +09:00
<span timeline-title-style flex items-center gap-2 cursor-pointer @click="$scrollToTop">
2022-11-30 05:15:53 +09:00
<div i-ri:hashtag />
2022-12-28 02:49:15 +09:00
<span>{{ t('nav.explore') }}</span>
2022-12-11 19:52:36 +09:00
</span>
2022-11-17 22:09:05 +09:00
</template>
2022-11-24 15:42:26 +09:00
2022-12-11 19:52:36 +09:00
<template #header>
<CommonRouteTabs replace :options="tabs" />
</template>
<NuxtPage v-if="isMastoInitialised" />
2022-11-17 22:09:05 +09:00
</MainContent>
</template>