Vue 的异步更新机制

UsubeniFantasy at 
这篇文章主要介绍的就是 Vue 异步更新相关的原理。本篇的核心理解起来没有响应式原理难,重点就是两个字**队列**。为什么需要异步更新?```javascriptthis.a = 1;this.b = 2;this.c = 3;this.a = 5;this.a = 6;`...……