lifecycle

Life Cycle 은 간단하게 개념만 정리하고 넘어가자. components가 페이지에 출력되는 과정을 Life Cycle라고 한다. created => mounted => component 생성 => updated => unmounted 순서로 created는 데이터만 존재하는 단계 mounted는 에 있던 태그들을 HTML로 전환 해주는 단계 component 생성단계는 만들었던 components 를 최상위에 index.html에 장착해주는 단계 updated는 components들을 재 렌더링이 되는 과정 unmounted는 components가 삭제되는 단계 Vue는 data가 변하면 실시간으로 html을 재 렌더링 해준다. 정확하게는 components 를 재 렌더링 하는것이다. Lifr C..
수빡이
'lifecycle' 태그의 글 목록