작성
·
402
답변 2
2
안녕하세요. 강의 잘 듣고 있습니다.
저도 위와 같은 에러를 보게 되어서 알려주신대로 추가했는데요, 그랬더니 아래와 같은 에러가 추가적으로 뜹니다. 구글링 해보고 가능한 선에서 모두 수정해보았지만 해결되지 않아 질문 드려요.
Compiled with problems:X
ERROR
C:\Users\vue3-project\src\App.vue
1:1 error Parsing error: Unexpected token <
C:\Users\vue3-project\src\components\TodoForm.vue
1:1 error Parsing error: Unexpected token <
C:\Users\vue3-project\src\components\TodoList.vue
1:1 error Parsing error: Unexpected token <
C:\Users\vue3-project\src\main.js
2:1 error Parsing error: The keyword 'import' is reserved
C:\Users\vue3-project\src\pages\index.vue
1:1 error Parsing error: Unexpected token <
C:\Users\vue3-project\src\pages\todos\index.vue
1:1 error Parsing error: Unexpected token <
-1
Vue eslint 에러 같은데 최상위 폴더에 .eslintrc.js 파일을 만드시고 (아직 없다면) 이 안에
module.exports = {
rules: {
'vue/multi-word-component-names': 0,
}
}
rules 객체 안에 위에처럼 넣어보시겠어요?
해보시고 안되면 또 댓글 남겨주세요 ^^
저도 같은 오류로 헤맸는데
https://blinders.tistory.com/75
여기서 해결 방법 찾았습니다
vue.config.js파일에 다음 값 넣어주면 해결돼요..ㅠㅠ