vue启动项目时临时修改端口的方法 方法一:通过修改根目录下的vue.config.js配置文件 module.exports = { devServer: { port: 3000, // 端口 }, // lintOnSave: false // 取消 eslint 验证 } 方法二:通过vue项目启动命令 //npm run serve -- --port 端口号 例: npm run serve -- --port 8081