打开node_modules\@vue\cli-service\lib\commands\serve.js文件

将host的值修改为localhost:

1
2
3
4
5
const defaults = {
host: '0.0.0.0', // 修改为localhost
port: 8080,
https: false
}