创建vue项目

This commit is contained in:
2026-02-06 20:19:09 +08:00
parent 3cb15575e6
commit 99c5c5089e
13 changed files with 1680 additions and 0 deletions

24
src/views/Report.vue Normal file
View File

@@ -0,0 +1,24 @@
<template>
<div class="page">
<h2>报告中心</h2>
<p>在这里管理查看和导出各类报告</p>
</div>
</template>
<script setup lang="ts"></script>
<style scoped>
.page h2 {
margin-top: 0;
margin-bottom: 8px;
font-size: 18px;
font-weight: 600;
}
.page p {
margin: 0;
color: #4b5563;
font-size: 14px;
}
</style>