mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-16 14:43:43 +08:00
43 lines
1.0 KiB
Vue
43 lines
1.0 KiB
Vue
<template>
|
|
<router-view v-slot="{ Component, route }">
|
|
<transition
|
|
:name="theme.pageAnimateMode"
|
|
mode="out-in"
|
|
:appear="true"
|
|
@before-leave="app.setDisableMainXScroll(true)"
|
|
@after-enter="app.setDisableMainXScroll(false)"
|
|
>
|
|
<keep-alive :include="routeStore.cacheRoutes">
|
|
<component
|
|
:is="Component"
|
|
v-if="app.reloadFlag"
|
|
:key="route.fullPath"
|
|
:class="{ 'p-16px': showPadding }"
|
|
class="flex-grow bg-#f6f9f8 dark:bg-#101014 transition duration-300 ease-in-out"
|
|
/>
|
|
</keep-alive>
|
|
</transition>
|
|
</router-view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useAppStore, useRouteStore, useThemeStore } from '@/store';
|
|
|
|
defineOptions({ name: 'GlobalContent' });
|
|
|
|
interface Props {
|
|
/** 显示padding */
|
|
showPadding?: boolean;
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
showPadding: true
|
|
});
|
|
|
|
const app = useAppStore();
|
|
const theme = useThemeStore();
|
|
const routeStore = useRouteStore();
|
|
</script>
|
|
|
|
<style scoped></style>
|