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

14 lines
390 B
Vue

<script setup lang="ts">
const params = useRoute().params
const handle = $(computedEager(() => params.account as string))
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>