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