1. node 버전이 안바뀌는 이유
한 프로젝트에서는 노드를 14버전을 써야해서 노드 버전을 바꿔야했다.
노드 버전을 바꾸어도 변경이 안되었는데 그 이유는
volta에서 노드를 잡고 있어서 그렇다
volta install node@14
이렇게 하여 해결했다.
2. vue $attrs
vue 에서 부모가 class와 style을 제외하고 모든 속성을 넘겨주는 것
3. boolean 과 Boolean 타입의 차이점
https://stackoverflow.com/questions/1295170/whats-the-difference-between-boolean-and-boolean-in-java
https://pythontoomuchinformation.tistory.com/493
boolean은 true, false의 값을 가진다.
Boolean은 추가로. null값을 가진다.
728x90