在vue中要让局域网内都能访问到你起的服务,需要去config目录下的index.js文件中去修改:
module.exports = {
dev: {
assetsSubDirectory: 'static',
assetsPulicPath: '/',
proxyTable: {},
// 修改host
host: '0.0.0.0',
port: 8080,
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
poll: false
}
}
将之前host那里的localhost改完0.0.0.0即可。