TIL

[TIL] 20230315 volta로 노드 버전 바꾸기/ vue attrs / boolean vs Boolean

자바칩 프라푸치노 2023. 3. 17. 17:22

1. node 버전이 안바뀌는 이유

한 프로젝트에서는 노드를 14버전을 써야해서 노드 버전을 바꿔야했다.

노드 버전을 바꾸어도 변경이 안되었는데 그 이유는 

volta에서 노드를 잡고 있어서 그렇다

volta install node@14

 

이렇게 하여 해결했다.

 

2. vue $attrs

https://hasudoki.tistory.com/entry/Vuejs-%EC%83%88%EB%A1%9C%EC%9A%B4-v-model-%EC%82%B4%ED%8E%B4%EB%B3%B4%EA%B8%B04-attrs-listeners

 

[Vue.js] 새로운 v-model 살펴보기#4 ($attrs, $listeners)

2021/01/22 - [개발일기/Vue.js] - [Vue.js] 새로운 v-model 살펴보기#1 (vue3에서 바뀐 점) 2021/01/28 - [개발일기/Vue.js] - [Vue.js] 새로운 v-model 살펴보기#2 (다수의 v-model 사용하기) 2021/01/31 - [개발일기/Vue.js] - [Vue

hasudoki.tistory.com

vue 에서 부모가 class와 style을 제외하고 모든 속성을 넘겨주는 것

 

 

3. boolean 과  Boolean 타입의 차이점

https://stackoverflow.com/questions/1295170/whats-the-difference-between-boolean-and-boolean-in-java

 

What's the difference between boolean and Boolean in Java?

I would like to understand the difference between the Boolean and boolean types in Java, specifically as they relate to GWT. I know that methods are not supported but I want more info if it is avai...

stackoverflow.com

https://pythontoomuchinformation.tistory.com/493

 

Boolean과 boolean의 차이 = 참조타입과 원시타입의 차이

우선, Boolean과 boolean의 차이를 알아보자. Boolean (참조타입; reference type) true, false, null 값을 가진다. ∴ Null 체크를 필요로할 때 참조형을 사용하자. boolean (원시타입; primitive type) true, false 값을 가진

pythontoomuchinformation.tistory.com

boolean은 true, false의 값을 가진다. 

Boolean은 추가로. null값을 가진다.

 

 

728x90