fabulous_front/README.md
2025-10-14 17:19:43 +08:00

47 lines
726 B
Markdown
Raw Permalink 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.

# 地熱
此專案是使用 Vite + Vue 3 建立的前端管理介面。
## 主要功能
- Vue 3 + Vite
- Element Plus UI
- Pinia 狀態管理
- Vue Router
- ECharts 圖表
- Leaflet 地圖
## 環境需求
- Node.js建議 v18+
- npm 或 yarn
## 安裝
在專案根目錄執行:
```powershell
npm install
# 或使用 yarn
# yarn
```
## 常用指令
請使用 PowerShell或相同 shell在專案根目錄執行
```powershell
npm run dev # 本機開發 (Vite)
npm run build # 產生 production bundle
npm run preview # 本地預覽 build 後的結果
```
這些 scripts 自 `package.json` 取得:
```json
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
}
```