add all project code

This commit is contained in:
2026-02-14 00:21:43 +08:00
parent d8e0f50895
commit 5a56af2ce8
33 changed files with 19989 additions and 0 deletions

9
start_frontend.bat Normal file
View File

@@ -0,0 +1,9 @@
@echo off
chcp 65001 >nul
echo 启动前端开发服务器...
cd mengyakeyvault-frontend
if not exist node_modules (
echo 正在安装依赖...
call npm install
)
npm start