init project

This commit is contained in:
Timi
2026-04-03 12:02:34 +08:00
parent d4bef26c96
commit 2665acc885
36 changed files with 5725 additions and 218 deletions

16
src/layout/RootLayout.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<div class="root-layout">
<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>