[Vue.js] tutorial - 2. Declarative Rendering
·
✏️ Study/⛰️ Vue.js & Nuxt
📍Reactive state: reactive()- state가 바뀌면 HTML도 자동으로 업데이트됨- 이 state는 reactive 성격을 띔- Vue.js의 reactive() API를 활용하여 reactive state 선언 가능- reactive() API로 만들어진 객체들은 JS 프록시 객체들이고 일반 객체들처럼 작동함import { reactive } from "vue";const counter = reactive({ count: 0,});console.log(counter.count); // 0counter.count++; 📍Reactive state: ref()- reactive()는 객체에 대해서만 작동(배열, Map, Set 포함)- 반면 ref()는 어떤 타입에든 자유롭게 사용..