vue.js vue-cli 中解决 axios 跨域调用的问题

修改 /config/index.js 文件如下:
proxyTable: {
'/api': {
target: 'http://chifan.local',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
原文地址:https://www.cnblogs.com/mouseleo/p/8141086.html