chore: 重构项目结构

This commit is contained in:
anghunk
2026-01-21 10:53:11 +08:00
parent fc86934094
commit 643d5c92e8
59 changed files with 74 additions and 74 deletions

23
cwd-admin/src/App.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<div class="app-root">
<router-view />
</div>
</template>
<script setup lang="ts"></script>
<style>
html,
body,
#app,
.app-root {
height: 100%;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: #f5f5f5;
}
</style>