所需要的插件有
node.js
element.js
vue.js
html tools.js
live edits.js
導入的步驟
## 開發
```bash
# 克隆項目
git clone https://git.**
# 進入項目目錄
cd test-vue 項目名稱
# 安裝依賴
npm install
# 建議不要直接使用 cnpm 安裝依賴,會有各種詭異的 bug。可以通過如下操作解決 npm 下載速度慢的問題
npm install --registry=https://registry.npm.taobao.org
# 啟動服務
npm run dev
```
瀏覽器訪問 http://localhost:80
## 發布
```bash
# 構建測試環境
npm run build:stage
# 構建生產環境
npm run build:prod