2022-11-15 16:56:11 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
const params = useRoute().params
|
2022-11-24 06:47:14 +01:00
|
|
|
const accountName = $computed(() => params.account as string)
|
2022-11-23 00:08:36 +01:00
|
|
|
|
2022-11-24 06:47:14 +01:00
|
|
|
const account = await fetchAccountByName(accountName)
|
2022-11-26 16:42:58 +01:00
|
|
|
const paginator = account ? useMasto().accounts.getFollowersIterable(account.id, {}) : null
|
2022-11-15 16:56:11 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-23 18:16:10 +01:00
|
|
|
<template v-if="account">
|
|
|
|
<AccountPaginator :paginator="paginator" />
|
|
|
|
</template>
|
2022-11-15 16:56:11 +01:00
|
|
|
</template>
|