需要安裝 concurrently 模塊 npm install concurrently
在packjson中運行
"scripts": { "start": "concurrently \"npm run serve\" \"npm run node\"", "serve": "vue-cli-service serve", "node": "node server/index", "build": "vue-cli-service build", "lint": "vue-cli-service lint", "test:unit": "vue-cli-service test:unit" }
親測有效