18 lines
372 B
Vue
18 lines
372 B
Vue
<template>
|
|
<div class="min-h-screen">
|
|
<Header></Header>
|
|
<Main class="min-h-screen h-full">
|
|
<Suspense>
|
|
<slot />
|
|
</Suspense>
|
|
</Main>
|
|
<Footer></Footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Header from '../layout/UiHeader.vue'
|
|
import Main from '../layout/UiMain.vue'
|
|
import Footer from '../layout/UiFooter.vue'
|
|
</script>
|