Vue.js - axios를 설치하고 바로 사용하려고 하는데 에러가 발생하였습니다.
'Axios' is not defined no-undef
당황하였다.
■해결 방법
해당되는 컴포넌트(component)에 import 해주시면 됩니다.
<script>
import axios from 'axios'
export default {
...
}
</script>
이상입니다.
[오류해결] 'Axios' is not defined no-undef
해결방법 '해당라이브러리' is not defined no-undef 오류가 났을 때는 import를 해주면 간단히 해결된다.
import Axios from 'axios';
iancoding.tistory.com
댓글 영역