mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-12-28 04:00:22 +08:00
18 lines
340 B
Vue
18 lines
340 B
Vue
<template>
|
|
<transition name="fade-slide" mode="out-in" appear>
|
|
<section class="cus-scroll-y wh-full p-15 flex-col bg-[#f5f6fb]">
|
|
<slot />
|
|
<AppFooter v-if="showFooter" mt-15 />
|
|
</section>
|
|
</transition>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
showFooter: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
})
|
|
</script>
|