Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 분할정복
- Vue
- codingtest
- 코드품앗이
- android
- DART
- 알고리즘
- 안드로이드스튜디오
- DFS와BFS
- 개발
- django
- 동적계획법
- cos pro
- 파이썬
- cos pro 1급
- Flutter
- C++
- 코테
- BAEKJOON
- 안드로이드
- cos
- 백준
- Algorithm
- AndroidStudio
- DFS
- issue
- 동적계획법과최단거리역추적
- 코딩테스트
- vuejs
- Python
Archives
- Today
- Total
Development Artist
[Issue, Vuejs] error Component name "Home" should always be multi-word vue/multi-word-component-names 본문
TroubleShooting/VueJs Issue
[Issue, Vuejs] error Component name "Home" should always be multi-word vue/multi-word-component-names
JMcunst 2022. 4. 1. 14:12728x90
반응형
이슈
해결
1번 방법: export 하는 부분의 name을 Home -> TheHome 또는 the-home 등 2개 이상의 단어로 작명한다.
2번 방법: export 하는 부분의 name 위에 '//eslint-disable-next-line'을 추가해준다.
원인
Vue에서 view의 이름을 작명할 때 2개 이상의 word로 구성하는 것을 따르기 때문이다. HTML의 요소와 충돌을 방지하기 위해서이다.
728x90
반응형
Comments