mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
30 lines
727 B
Vue
30 lines
727 B
Vue
<script setup lang="ts">
|
|
const params = useRoute().params
|
|
const accountName = $computed(() => toShortHandle(params.account as string))
|
|
|
|
const account = await fetchAccountByName(accountName).catch(() => null)
|
|
|
|
if (account) {
|
|
useHead({
|
|
title: () => `${getDisplayName(account)} (@${account.acct})`,
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back>
|
|
<template #title>
|
|
<span text-lg font-bold>{{ account ? getDisplayName(account) : 'Profile' }}</span>
|
|
</template>
|
|
|
|
<template v-if="account">
|
|
<AccountHeader :account="account" border="b base" />
|
|
<NuxtPage />
|
|
</template>
|
|
|
|
<CommonNotFound v-else>
|
|
Account @{{ accountName }} not found
|
|
</CommonNotFound>
|
|
</MainContent>
|
|
</template>
|