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

23 lines
588 B
Vue
Raw Normal View History

<script setup lang="ts">
2022-12-14 00:01:25 +03:00
const { t } = useI18n()
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
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})`,
})
}
</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>
</template>