@echo off chcp 65001 >nul echo. echo ==================================== echo MosDNS Vue 开发模式 echo ==================================== echo. echo 📌 提示: echo - 终端 1: 运行此脚本(Vue 开发服务器) echo - 终端 2: 运行 Go 后端 echo go run main.go start -c config.yaml echo. echo 然后访问: http://localhost:5173 echo. echo ==================================== echo. cd web-ui if not exist "node_modules\" ( echo 📦 首次运行,正在安装依赖... call npm install ) echo 🚀 启动 Vue 开发服务器... npm run dev