我想在vue-cli中设置自定义标头。
vue的版本为2.5.2。
我在main.js中尝试过:
import Vue from 'vue'
import App from './App'
import router from './router'
Vue.config.productionTip = false
Vue.http.headers.common['Cache-Control'] = 'no-cache, no-store, must-revalidate'
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
但是它返回:
Uncaught TypeError: Cannot read property 'headers' of undefined
答案 0 :(得分:0)
我认为您需要安装vue-resource或vue-axios库才能使此工作和进行REST调用。
请安装并重试。
https://github.com/pagekit/vue-resource
https://github.com/imcvampire/vue-axios
我希望这会有所帮助。
答案 1 :(得分:0)
您可以使用 vue.config.js
的 devServer
选项,它只是将其代理到 webpack
设置标题:
devServer: {
headers: { "Cache-Control": "no-cache, no-store, must-revalidate" }
}