解决使用vue resource跨域请求的时候遇到 Access-Control-Allow-Origin 错误

672 查看

在主模板里加入:

Vue.http.options.xhr = { withCredentials: true }
Vue.http.options.emulateJSON = true

---EOF---