1
0
elk/pages/conversations.vue

29 lines
596 B
Vue
Raw Normal View History

2022-11-18 18:37:22 +09:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().conversations.iterate()
2022-11-28 23:25:32 +09:00
const { t } = useI18n()
useHeadFixed({
2022-11-28 23:25:32 +09:00
title: () => t('nav_side.conversations'),
2022-11-25 20:48:48 +09:00
})
2022-11-18 18:37:22 +09:00
</script>
<template>
<MainContent>
<template #title>
2022-11-30 05:15:53 +09:00
<NuxtLink to="/conversations" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:at-line />
<span>{{ t('nav_side.conversations') }}</span>
</NuxtLink>
2022-11-18 18:37:22 +09:00
</template>
2022-11-24 15:42:26 +09:00
<slot>
<ConversationPaginator :paginator="paginator" />
</slot>
2022-11-18 18:37:22 +09:00
</MainContent>
</template>