elk/pages/[[server]]/@[account]/index/with_replies.vue

25 wiersze
681 B
Vue
Czysty Zwykły widok Historia

2022-12-13 21:01:25 +00:00
<script setup lang="ts">
definePageMeta({ name: 'account-replies' })
const { t } = useI18n()
const params = useRoute().params
const handle = computed(() => params.account as string)
2022-12-13 21:01:25 +00:00
const account = await fetchAccountByHandle(handle.value)
2022-12-13 21:01:25 +00:00
2024-01-09 08:56:15 +00:00
const paginator = useMastoClient().v1.accounts.$select(account.id).statuses.list({ excludeReplies: false })
2022-12-13 21:01:25 +00:00
if (account) {
useHydratedHead({
title: () => `${t('tab.posts_with_replies')} | ${getDisplayName(account)} (@${account.acct})`,
2022-12-13 21:01:25 +00:00
})
}
</script>
<template>
<div>
<AccountTabs />
<TimelinePaginator :paginator="paginator" :preprocess="reorderedTimeline" context="account" :account="account" />
2022-12-13 21:01:25 +00:00
</div>
</template>