云文件系统初始化

This commit is contained in:
2026-04-01 22:39:11 +08:00
commit 3a20f6e7ed
74 changed files with 8693 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<template>
<div class="desktop-layout">
<!-- 顶部导航栏 -->
<TopNavbar />
<!-- 主内容区 -->
<div class="main-content">
<router-view />
</div>
</div>
</template>
<script setup>
import TopNavbar from '@/components/TopNavbar.vue'
</script>
<style scoped>
.desktop-layout {
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
}
.main-content {
flex: 1;
overflow: hidden;
display: flex;
}
</style>