상세 컨텐츠

본문 제목

[ Vue.js ] 'Axios' is not defined no-undef

FrontEnd/Vue.js

by SangHoonE 2021. 11. 9. 16:43

본문

반응형

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

 

관련글 더보기

댓글 영역