var father = document.getElementsByClassName('father')[0]
var child = document.createElement('div')、
child.innerText = "this is a child";
father.appendChild(demoNode);
alert('看child是否已渲染到页面')
老师,我看原生web-api的dom操作也是异步的,感觉用nextTick也有这个的原因
还是vue本身也做了一些合并,等数据变更积累到一定的程度才去触发已变更数据渲染到html,那么是有哪些时机就会触发已经变更了的数据渲染到html呢?比如积累了多少条数据,或者等待了多长时间,就会把已变更数据渲染到html