axios设置withCredentials

在axios的参数中写入:

withCredentials:true

main.js 配置:

Vue.prototype.$axios = axios;
axios.defaults.withCredentials = true;

你可能感兴趣的:(前端)