1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-19 10:29:59 +01:00
elk/pages/[[server]]/@[account]/index/followers.vue
2023-01-08 14:21:09 +08:00

23 lines
588 B
Vue

<script setup lang="ts">
const { t } = useI18n()
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>