Closed ivan-94 closed 2 years ago
原因是 Watcher 在 update 时,如果是 sync, 就会跳过 queueWatcher:
update() {
/* istanbul ignore else */
if (this.lazy) {
this.dirty = true
} else if (this.sync) {
this.run()
} else {
queueWatcher(this)
}
}
Stale issue message
复现代码:
行为和 Vue 不一致