AppPage.vue 476 B

123456789101112131415161718192021222324
  1. <template>
  2. <main class="cus-scroll h-full flex-col flex-1 bg-#f5f6fb dark:bg-#121212">
  3. <main :class="{ 'flex-1': full }" class="m-12">
  4. <slot />
  5. </main>
  6. <slot name="footer">
  7. <TheFooter v-if="showFooter" class="mb-12 mt-auto" />
  8. </slot>
  9. <n-back-top :bottom="20" />
  10. </main>
  11. </template>
  12. <script setup>
  13. defineProps({
  14. full: {
  15. type: Boolean,
  16. default: false,
  17. },
  18. showFooter: {
  19. type: Boolean,
  20. default: false,
  21. },
  22. })
  23. </script>