[ Vue.js ] 'Axios' is not defined no-undef
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
[ Vue.js | Vuex ] Vuex 설치 에러 | npm ERR! code ERESOLVEnpm ERR! ERESOLVE unable to resolve dependency tree
2021.11.10
[ Vue.js ] Vue-cli - proxy error " Proxy error: Could not proxy request "
2021.11.09
[ Vue.js ] Error - [WDS] Disconnected! 에러
[ Vue.js ] 에러 - Error: You cannot call "get" on a collection with no paths. Instead, check the "length" property first to verify at least 1 path exists.
댓글 영역