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

23 lines
593 B
Vue
Raw Normal View History

<script setup lang="ts">
2022-12-13 22:01:25 +01:00
const { t } = useI18n()
const params = useRoute().params
2022-11-30 08:08:10 +01:00
const handle = $(computedEager(() => params.account as string))
2022-11-23 00:08:36 +01:00
definePageMeta({ name: 'account-following' })
2022-11-30 08:08:10 +01:00
const account = await fetchAccountByHandle(handle)
2022-12-03 06:36:10 +01:00
const paginator = account ? useMasto().accounts.iterateFollowing(account.id, {}) : null
2022-12-13 22:01:25 +01:00
if (account) {
useHeadFixed({
title: () => `${t('account.following')} | ${getDisplayName(account)} (@${account.acct})`,
2022-12-13 22:01:25 +01:00
})
}
</script>
<template>
2023-01-05 17:48:20 +01:00
<template v-if="paginator">
2022-11-23 18:16:10 +01:00
<AccountPaginator :paginator="paginator" />
</template>
</template>