第一次提交:Vue3后台前端最新版本

This commit is contained in:
XingQue
2026-06-14 02:43:42 +08:00
commit cf07faccc4
68 changed files with 29381 additions and 0 deletions

18
src/App.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<router-view />
</template>
<script setup>
// 无需额外逻辑
</script>
<style>
html, body {
overflow: scroll; /* 强制显示滚动条,便于观察 */
-webkit-overflow-scrolling: touch; /* 平滑滚动 */
}
.layout {
min-height: 100vh; /* 确保高度至少为视口高度,产生纵向滚动 */
}
</style>