2022-11-15 16:56:11 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
const params = useRoute().params
|
2022-11-30 08:08:10 +01:00
|
|
|
const handle = $(computedEager(() => params.account as string))
|
2022-11-23 00:08:36 +01:00
|
|
|
|
2022-11-30 18:15:18 +01:00
|
|
|
definePageMeta({ name: 'account-following' })
|
|
|
|
|
2022-11-30 08:08:10 +01:00
|
|
|
const account = await fetchAccountByHandle(handle)
|
2022-11-26 16:42:58 +01:00
|
|
|
const paginator = account ? useMasto().accounts.getFollowingIterable(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>
|