2022-11-15 15:56:11 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const params = useRoute().params
|
|
|
|
const user = $computed(() => params.user as string)
|
2022-11-22 23:08:36 +00:00
|
|
|
|
2022-11-23 17:16:10 +00:00
|
|
|
const { data: account } = $(await useAsyncData(`${user}:info`, () => masto.accounts.lookup({ acct: user })))
|
|
|
|
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">
|
|
|
|
<div>
|
|
|
|
<AccountHeader :account="account" />
|
|
|
|
</div>
|
|
|
|
<AccountPaginator :paginator="paginator" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<CommonNotFound v-else>
|
|
|
|
Account @{{ params.user }} not found
|
|
|
|
</CommonNotFound>
|
2022-11-15 15:56:11 +00:00
|
|
|
</template>
|