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