云文件系统初始化
This commit is contained in:
30
web-vue/src/views/desktop/index.vue
Normal file
30
web-vue/src/views/desktop/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user