feat:搭建基本框架

This commit is contained in:
2025-06-23 19:39:45 +08:00
parent de5537ee1b
commit e09aed87d1
38 changed files with 2106 additions and 83 deletions

20
src/views/stats/index.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<div class="common-mobile-view food-stats">
<food-stats />
<food-chart />
</div>
</template>
<script setup lang="ts">
import FoodStats from '@/components/Stats/FoodStats.vue'
import FoodChart from '@/components/Stats/FoodChart.vue'
</script>
<style lang="scss">
.food-stats {
display: flex;
flex-direction: column;
gap: 10px;
}
</style>