fall-wind

Results 2 comments of fall-wind

同问 为什么会出现两个UnKnown的根元素?是因为热更新的原因吗?

``` setTimeout(function() { console.log('three') }, 0) Promise.resolve().then(function() { console.log('two') }) console.log('one') ``` 同样的原生输出one two three;这应该是宏任务与微任务的执行顺序问题,