在vue.config.js文件中添加代码(没有此文件需要自行创建)

module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'http://www.xxx.com', // 接口的域名
        secure: false, // 如果是https接口,需要配置这个参数
        changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
        pathRewrite: {
          '^/api': ''
        }
      }
    }
  }
}

将接口请求地址改为 本地启动地址 + /api,例:http://localhost:8080/api