mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
39 lines
1.2 KiB
Vue
39 lines
1.2 KiB
Vue
<template>
|
|
<n-scrollbar ref="scrollbar" class="h-full" :x-scrollable="true" :content-class="routeProps.fullPage ? 'h-full' : ''">
|
|
<div class="inline-block w-full" :class="[routeProps.fullPage ? 'h-full' : 'min-h-100vh']">
|
|
<router-view v-slot="{ Component, route: itemRoute }">
|
|
<transition :name="theme.pageStyle.animateType" mode="out-in" appear>
|
|
<keep-alive :include="cacheRoutes">
|
|
<component :is="Component" v-if="reload" :key="itemRoute.fullPath" />
|
|
</keep-alive>
|
|
</transition>
|
|
</router-view>
|
|
</div>
|
|
</n-scrollbar>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { watch } from 'vue';
|
|
import { useRoute } from 'vue-router';
|
|
import { NScrollbar } from 'naive-ui';
|
|
import { useRouteProps, useScrollBehavior } from '@/hooks';
|
|
import { useThemeStore } from '@/store';
|
|
import { useReloadInject } from '@/context';
|
|
import { cacheRoutes } from '@/router';
|
|
|
|
const theme = useThemeStore();
|
|
const { reload } = useReloadInject();
|
|
|
|
const route = useRoute();
|
|
const { scrollbar, resetScrollBehavior } = useScrollBehavior();
|
|
const routeProps = useRouteProps();
|
|
|
|
watch(
|
|
() => route.name,
|
|
() => {
|
|
resetScrollBehavior();
|
|
}
|
|
);
|
|
</script>
|
|
<style scoped></style>
|