Files
timi-server/src/layout/RootLayout.vue
2026-04-13 14:55:50 +08:00

17 lines
275 B
Vue

<template>
<div class="root-layout diselect">
<page-transition />
</div>
</template>
<script setup lang="ts">
import PageTransition from "@/components/PageTransition.vue";
</script>
<style scoped lang="less">
.root-layout {
width: 100%;
min-height: 100vh;
}
</style>