Go to file
2025-11-21 17:37:14 +08:00
.vscode Initial commit 2025-10-14 17:19:43 +08:00
public Initial commit 2025-10-14 17:19:43 +08:00
src feat : 巡檢任務切版 | 運維管理切版 2025-11-21 17:37:14 +08:00
.gitignore Initial commit 2025-10-14 17:19:43 +08:00
index.html Initial commit 2025-10-14 17:19:43 +08:00
package-lock.json feat: 巡檢設定切版 | 公用組件: Alert、PaginatedTable 2025-11-19 14:01:34 +08:00
package.json feat: 巡檢設定切版 | 公用組件: Alert、PaginatedTable 2025-11-19 14:01:34 +08:00
README.md Initial commit 2025-10-14 17:19:43 +08:00
vite.config.js feat: 巡檢設定切版 | 公用組件: Alert、PaginatedTable 2025-11-19 14:01:34 +08:00

地熱

此專案是使用 Vite + Vue 3 建立的前端管理介面。

主要功能

  • Vue 3 + Vite
  • Element Plus UI
  • Pinia 狀態管理
  • Vue Router
  • ECharts 圖表
  • Leaflet 地圖

環境需求

  • Node.js建議 v18+
  • npm 或 yarn

安裝

在專案根目錄執行:

npm install
# 或使用 yarn
# yarn

常用指令

請使用 PowerShell或相同 shell在專案根目錄執行

npm run dev      # 本機開發 (Vite)
npm run build    # 產生 production bundle
npm run preview  # 本地預覽 build 後的結果

這些 scripts 自 package.json 取得:

"scripts": {
	"dev": "vite",
	"build": "vite build",
	"preview": "vite preview"
}