vue.mixin()方法 相当于全局的代码块 我们可以在main.js这样定义
Vue.mixin({
// 可以写data methods 等
methods: {
getAuthHeaders() {
if (localStorage.token) {
return {
Authorization: 'Bearer ' + (localStorage.token || '')
};
} else {
return {};
}
}
}
});