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