fix(style): [WIP] User profile
This commit is contained in:
parent
4428873583
commit
a428f00afe
|
@ -11,6 +11,9 @@ import axios from 'axios'
|
|||
import useErrorHandler from '~/composables/useErrorHandler'
|
||||
import useReport from '~/composables/moderation/useReport'
|
||||
|
||||
import Layout from '~/components/ui/Layout.vue'
|
||||
import Link from '~/components/ui/Link.vue'
|
||||
|
||||
interface Events {
|
||||
(e: 'updated', value: Actor): void
|
||||
}
|
||||
|
@ -69,9 +72,9 @@ watch(props, fetchData, { immediate: true })
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<main
|
||||
<Layout stack main
|
||||
v-title="labels.usernameProfile"
|
||||
class="main page-profile"
|
||||
class="page-profile"
|
||||
>
|
||||
<div
|
||||
v-if="isLoading"
|
||||
|
@ -194,5 +197,5 @@ watch(props, fetchData, { immediate: true })
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</Layout>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue