게시글
질문&답변
2019.11.12
'myChart' is assigned a value but never used
안녕하세요! 저동 동일한 현상이어서 샘이 말씀하신것처럼 아래와 같이 `vue.config.js` 를 생성 후 serve를 내렸다 올렸는데도 동일 한 현상이 발생합니다. (사진) (사진) vue 버젼은 PS C:\Dev_Env\workspace\vue-advanced\vue-charts\chart-lib> vue -V @vue/cli 4.0.5 입니다. 그리고 package.jon에 설치된 chart.js는 "dependencies": { "chart.js": "^2.9.2", "core-js": "^3.3.2", "vue": "^2.6.10" }, 입니다. 감사합니다.
- 1
- 4
- 2.3K
질문&답변
2019.11.12
console.log 오류 질문드립니다...!
바로 답변 주셔서 감사합니다. 그런데 말씀 하신데로 `vue.config.js` 파일을 생성하고 위의 내용을 복사해서 넣어도 결과는 동일합니다. 그래서 App.vue 소스 파일에 /* eslint-disable no-console */ 내용을 1 line 추가했더니 오류가 없어집니다. methods: { loginUser() { axios.get('https://jsonplaceholder.typicode.com/users/1') .then(response => { /* eslint-disable no-console */ if (response.data.id === 1) { axios.get('https://jsonplaceholder.typicode.com/todos') .then(response => { console.log('test', response); }) .catch(error => console.log(error)); } }) .catch(error => console.log(error)); } } 강의 내용의 "vue-advanced"에서는 이런 오류가 없었는데, 신규로 뷰를 생성해서 async-await 강의 단계에서는 왜이런 현상이 발생하는지 궁금합니다. package를 추가로 더 설치를 해야되는건지요? vue를 처음 배우고 있는 단계라 궁금해서 여쭈어 봅니다.
- 3
- 3
- 1K