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

23 lines
588 B
Vue
Raw Normal View History

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