구성 vue js의 머리글 설정 지금 나는 다음과 같은 악리를 사용하고 있다. import axios from 'axios' axios.get(apiObjUrl, { headers: { 'Content-type': 'application/x-www-form-urlencoded', } }) .then(({data}) => { 글로벌 Axios 헤더를 설정하려면 어떻게 해야 합니까?(모든 요청에 사용할 현지화 헤더를 설정해야 합니다.)Axios 인터셉터를 사용합니다.https://github.com/mzabriskie/axios#interceptors 인config요청 헤더가 있습니다.언급URL : https://stackoverflow.com/questions/45541241/axios-set-header..