elk/pages/@[account].vue
2022-11-25 19:48:48 +08:00

26 lines
569 B
Vue

<script setup lang="ts">
const params = useRoute().params
const accountName = $computed(() => params.account as string)
const account = await fetchAccountByName(accountName).catch(() => null)
if (account) {
useHead({
title: `${account.displayName} (@${account.acct})`,
})
}
</script>
<template>
<MainContent>
<template v-if="account">
<AccountHeader :account="account" border="b base" />
<NuxtPage />
</template>
<CommonNotFound v-else>
Account @{{ accountName }} not found
</CommonNotFound>
</MainContent>
</template>