first commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
@echo off
|
||||
echo ================================
|
||||
echo 窗帘工厂管理系统 - Vue3版本
|
||||
echo ================================
|
||||
echo.
|
||||
echo 正在启动开发服务器...
|
||||
echo.
|
||||
|
||||
cd /d "%~dp0"
|
||||
|
||||
:: 检查 node_modules 是否存在
|
||||
if not exist "node_modules" (
|
||||
echo 首次运行,正在安装依赖...
|
||||
npm install
|
||||
echo.
|
||||
)
|
||||
|
||||
npm run dev
|
||||
|
||||
pause
|
||||
Reference in New Issue
Block a user