Skip to content

Vue.nextTick

Vue의 $nextTick 사용 방법.

About

$nextTick으로 감싼뒤 callback을 통해 DOM을 조작하게 되면 Vue.js에서 데이터갱신 후 UI까지 완료한 뒤에 $nextTick에 있는 함수를 최종적으로 수행하게 된다.

created: function() {
    // ...
    this.$nextTick(function() {
        var dom = document.getElementById('item-0');
        dom.style.backgroundColor = 'red';
    });
}

See also

Favorite site