2022-11-16 00:56:11 +09:00
|
|
|
<script setup lang="ts">
|
|
|
|
const params = useRoute().params
|
2022-11-30 16:08:10 +09:00
|
|
|
const handle = $(computedEager(() => params.account as string))
|
2022-11-23 08:08:36 +09:00
|
|
|
|
2022-11-30 16:08:10 +09:00
|
|
|
const account = await fetchAccountByHandle(handle)
|
2022-11-27 00:42:58 +09:00
|
|
|
const paginator = account ? useMasto().accounts.getFollowingIterable(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>
|