elk/pages/@[account]/index/followers.vue
2022-11-30 18:15:18 +01:00

16 lines
437 B
Vue

<script setup lang="ts">
const params = useRoute().params
const handle = $(computedEager(() => params.account as string))
definePageMeta({ name: 'account-followers' })
const account = await fetchAccountByHandle(handle)
const paginator = account ? useMasto().accounts.getFollowersIterable(account.id, {}) : null
</script>
<template>
<template v-if="account">
<AccountPaginator :paginator="paginator" />
</template>
</template>