mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 01:40:46 +02:00
21 lines
538 B
Vue
21 lines
538 B
Vue
<template>
|
|
<UPageBody v-if="loading">
|
|
<UPageHero title="Loading..." />
|
|
</UPageBody>
|
|
<UPageBody v-else v-bind="$props" class="mt-0 pb-0 px-4 h-full">
|
|
<template v-for="(_, slotName) in $slots" #[slotName]>
|
|
<slot :name="slotName" />
|
|
</template>
|
|
</UPageBody>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PageBodyProps } from '#ui/components/PageBody.vue';
|
|
|
|
export interface LoadingPageProps extends PageBodyProps {
|
|
loading: boolean;
|
|
}
|
|
|
|
defineProps<LoadingPageProps>();
|
|
</script>
|