fix(style): [WIP] User profile

This commit is contained in:
ArneBo 2025-01-03 14:11:39 +01:00 committed by upsiflu
parent 4428873583
commit a428f00afe
1 changed files with 6 additions and 3 deletions

View File

@ -11,6 +11,9 @@ import axios from 'axios'
import useErrorHandler from '~/composables/useErrorHandler' import useErrorHandler from '~/composables/useErrorHandler'
import useReport from '~/composables/moderation/useReport' import useReport from '~/composables/moderation/useReport'
import Layout from '~/components/ui/Layout.vue'
import Link from '~/components/ui/Link.vue'
interface Events { interface Events {
(e: 'updated', value: Actor): void (e: 'updated', value: Actor): void
} }
@ -69,9 +72,9 @@ watch(props, fetchData, { immediate: true })
</script> </script>
<template> <template>
<main <Layout stack main
v-title="labels.usernameProfile" v-title="labels.usernameProfile"
class="main page-profile" class="page-profile"
> >
<div <div
v-if="isLoading" v-if="isLoading"
@ -194,5 +197,5 @@ watch(props, fetchData, { immediate: true })
</div> </div>
</div> </div>
</div> </div>
</main> </Layout>
</template> </template>