elk/pages/[[server]]/@[account]/index/following.vue
2023-01-09 22:27:03 +02:00

22 lines
597 B
Vue

<script setup lang="ts">
const { $t } = useFluent()
const params = useRoute().params
const handle = $(computedEager(() => params.account as string))
definePageMeta({ name: 'account-following' })
const account = await fetchAccountByHandle(handle)
const paginator = account ? useMasto().v1.accounts.listFollowing(account.id, {}) : null
if (account) {
useHeadFixed({
title: () => `${$t('account_following')} | ${getDisplayName(account)} (@${account.acct})`,
})
}
</script>
<template>
<template v-if="paginator">
<AccountPaginator :paginator="paginator" />
</template>
</template>