Files
admin_core/demo-project/如何启动.txt
张成 845658f193 1
2025-10-08 18:53:38 +08:00

51 lines
1022 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
====================================
Demo 项目启动说明
====================================
本项目现在使用框架源码,更方便调试!
⚠️ 重要:首次运行必须先安装依赖!
【方式一:一键安装+启动(推荐)】
Windows 用户:
1. 双击 install.bat安装依赖
2. 双击 start.bat启动项目
【方式二:手动安装+启动】
1. 安装依赖(首次必须)
npm install
2. 如果提示依赖缺失,运行:
npm install @vue/babel-preset-jsx brace vue2-ace-editor
3. 启动开发服务器
npm run dev
4. 浏览器自动打开
http://localhost:8080
【可访问页面】
/login - 登录页面
/home - 主页
/business/product - 产品列表示例
【遇到错误?】
1. 删除依赖重装:
rm -rf node_modules
rm package-lock.json
npm install
2. 查看更新日志:
CHANGELOG.md
3. 查看详细文档:
README.md
快速启动.md
====================================