2022-11-15 15:56:11 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const params = useRoute().params
|
2022-11-24 05:47:14 +00:00
|
|
|
const accountName = $computed(() => params.account as string)
|
2022-11-22 23:08:36 +00:00
|
|
|
|
2022-11-24 05:47:14 +00:00
|
|
|
const account = await fetchAccountByName(accountName)
|
2022-11-24 06:18:05 +00:00
|
|
|
const paginator = account ? masto.accounts.getFollowingIterable(account.id, {}) : null
|
2022-11-15 15:56:11 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-23 17:16:10 +00:00
|
|
|
<template v-if="account">
|
|
|
|
<AccountPaginator :paginator="paginator" />
|
|
|
|
</template>
|
2022-11-15 15:56:11 +00:00
|
|
|
</template>
|