forked from Mirrors/elk
22 lines
592 B
Vue
22 lines
592 B
Vue
<script setup lang="ts">
|
|
const { $t } = useFluent()
|
|
const params = useRoute().params
|
|
const handle = $(computedEager(() => params.account as string))
|
|
|
|
definePageMeta({ name: 'account-followers' })
|
|
|
|
const account = await fetchAccountByHandle(handle)
|
|
const paginator = account ? useMasto().v1.accounts.listFollowers(account.id, {}) : null
|
|
|
|
if (account) {
|
|
useHeadFixed({
|
|
title: () => `${$t('account_followers')} | ${getDisplayName(account)} (@${account})`,
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="paginator">
|
|
<AccountPaginator :paginator="paginator" />
|
|
</template>
|
|
</template>
|