1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 20:29:08 +01:00
elk/pages/@[account]/index/followers.vue

14 lines
398 B
Vue

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