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 | 31 |
Tags
- DFS
- 코드품앗이
- 코딩테스트
- vuejs
- Algorithm
- 동적계획법과최단거리역추적
- 안드로이드스튜디오
- cos
- cos pro
- 백준
- Vue
- 알고리즘
- 동적계획법
- Python
- issue
- 파이썬
- C++
- DART
- BAEKJOON
- android
- Flutter
- 코테
- AndroidStudio
- cos pro 1급
- 안드로이드
- 분할정복
- codingtest
- DFS와BFS
- 개발
- django
Archives
- Today
- Total
목록TroubleShooting/VueJs Issue (3)
Development Artist
[Issue, Vuejs] Component name "Something" should always be multi-word
이슈 router 설정하면서, 다음과 같이 multi-word로 구성을 해야한다고 하면서 빌드가 안되는 모습. 해결 multi-word로 구성을 해주면 된다. ex) ProfileView.vue 와 같이... 원인 html 태그와 혼동을 없애기 위함이다.
TroubleShooting/VueJs Issue
2022. 11. 18. 09:49
[Issue, Vuejs] error Component name "Home" should always be multi-word vue/multi-word-component-names
이슈 해결 1번 방법: export 하는 부분의 name을 Home -> TheHome 또는 the-home 등 2개 이상의 단어로 작명한다. 2번 방법: export 하는 부분의 name 위에 '//eslint-disable-next-line'을 추가해준다. 원인 Vue에서 view의 이름을 작명할 때 2개 이상의 word로 구성하는 것을 따르기 때문이다. HTML의 요소와 충돌을 방지하기 위해서이다.
TroubleShooting/VueJs Issue
2022. 4. 1. 14:12
[Issue, Vuejs, Powershell] vue : 이 시스템에서 스크립트를 실행할 수 없으므로 파일을 로드할 수 없습니다. CategoryInfo : 보안 오류: (:) [],PSSecurityException
이슈 1. vue create '프로젝트이름' 명령어 입력시 다음과 같이 이슈 발생. 해결 1. 일단 보안정책 확인. // 기댓값 : Restricted get-executionpolicy 2. 보안정책 수정. set-executionpolicy remotesigned 3. 보안정책 변경 확인. // 기댓값 : Remotesigned get-executionpolicy 원인 1. Powershell의 보안정책 중 하나로, Powershell이 실행할 스크립트 제어를 위하여 기본적으로 Restricted로 제한이 된다.
TroubleShooting/VueJs Issue
2022. 4. 1. 13:18