|
|
|
@ -11,6 +11,7 @@ await loadProfile(route.params.username as string)
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|
<div> |
|
|
|
|
<NuxtLayout> |
|
|
|
|
<a-layout class="h-[75vh] overflow-y-auto flex"> |
|
|
|
|
<a-layout-sider :collapsed="false" width="320" class="h-max px-5" :trigger="null" collapsible theme="light"> |
|
|
|
@ -72,7 +73,9 @@ await loadProfile(route.params.username as string)
|
|
|
|
|
<div v-if="profile.website" class="nc-profile-website my-2"> |
|
|
|
|
<div class="flex items-center mr-4"> |
|
|
|
|
<MdiLinkVariant class="text-lg mr-2" /> |
|
|
|
|
<a class="!no-underline" :href="profile.website" rel="noopener noreferrer" target="_blank">{{ profile.website }}</a> |
|
|
|
|
<a class="!no-underline" :href="profile.website" rel="noopener noreferrer" target="_blank">{{ |
|
|
|
|
profile.website |
|
|
|
|
}}</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
@ -160,4 +163,5 @@ await loadProfile(route.params.username as string)
|
|
|
|
|
</a-layout-content> |
|
|
|
|
</a-layout> |
|
|
|
|
</NuxtLayout> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|