1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 14:28:10 +09:00
elk/pages/home.vue

27 lines
545 B
Vue
Raw Normal View History

<script setup lang="ts">
2022-11-28 19:14:58 +09:00
import { useI18n } from 'vue-i18n'
definePageMeta({
middleware: 'auth',
alias: ['/signin/callback'],
})
2022-11-28 19:14:58 +09:00
const { t } = useI18n()
useHeadFixed({
2022-12-28 02:49:15 +09:00
title: () => t('nav.home'),
2022-11-28 19:14:58 +09:00
})
</script>
<template>
<MainContent>
<template #title>
2022-11-30 05:15:53 +09:00
<NuxtLink to="/home" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:home-5-line />
2022-12-28 02:49:15 +09:00
<span>{{ $t('nav.home') }}</span>
2022-11-30 05:15:53 +09:00
</NuxtLink>
</template>
<TimelineHome v-if="isMastoInitialised" />
</MainContent>
</template>