mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 16:39:58 +00:00
21 lines
540 B
Vue
21 lines
540 B
Vue
<script setup lang="ts">
|
|
const params = useRoute().params
|
|
const accountName = $computed(() => params.account as string)
|
|
|
|
const account = await fetchAccountByName(accountName)
|
|
const paginator = account ? masto.accounts.getFollowingIterable(account!.id!, {}) : null
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="account">
|
|
<div>
|
|
<AccountHeader :account="account" />
|
|
</div>
|
|
<AccountPaginator :paginator="paginator" />
|
|
</template>
|
|
|
|
<CommonNotFound v-else>
|
|
Account @{{ params.user }} not found
|
|
</CommonNotFound>
|
|
</template>
|