feat: 花信 v1.0.0 — 月经管理应用

功能:
- 首页:周期状态/预测/快捷记录/迷你趋势图
- 日历:月视图 + 经期标记
- 记录:流量/症状/情绪/备注
- 分析:6种可视化模型(折线图/柱状图/雷达图/热力图/气泡图/箱线图)
This commit is contained in:
Mai
2026-05-21 23:18:54 +08:00
commit b7bd5de341
16 changed files with 8095 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath, URL } from 'node:url'
export default defineConfig({
base: '/huaxin/',
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
host: '0.0.0.0',
port: 3000,
open: false
}
})