[Vuejs]-VueJS nexttick and IE11

0👍

nextTick allows you to do something after you have changed the data and VueJS has updated the DOM based on your data change, but before the browser has rendered those changed on the page. If you want to explicitly re-render the DOM, use requestAnimationFrame or setTimeout.

You could check this thread.

Leave a comment