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