vue index.html引入js或者css无效时,其他方法引入(config.js)

1、index.hmtl引入js,css无效时

在config index.js里面
vue index.html引入js或者css无效时,其他方法引入(config.js)_第1张图片
2、关于跨域请求配置代理

 // 多个请求不同的域名,根据条件不同请求不同的域名
 proxyTable: {
      '/bankroll-manages': {
        target: 'http://test.com:8080', //对应自己的接口
        changeOrigin: true,
        ws: true,
      },
      '/api': {
        target: "https://api.yunhetong.com",
        changeOrigin: true
      }
    }
  • 遇到问题时,再补充

你可能感兴趣的:(vue,前后端分离遇到的问题)