elk/pages/@[user]/following.vue

21 lines
585 B
Vue
Raw Normal View History

<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
</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>
</template>