| 123456789101112131415161718192021222324 |
- <template>
- <main class="cus-scroll h-full flex-col flex-1 bg-#f5f6fb dark:bg-#121212">
- <main :class="{ 'flex-1': full }" class="m-12">
- <slot />
- </main>
- <slot name="footer">
- <TheFooter v-if="showFooter" class="mb-12 mt-auto" />
- </slot>
- <n-back-top :bottom="20" />
- </main>
- </template>
- <script setup>
- defineProps({
- full: {
- type: Boolean,
- default: false,
- },
- showFooter: {
- type: Boolean,
- default: false,
- },
- })
- </script>
|