vue 2.7.6 → 2.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -313,7 +313,7 @@ function doWatch(
313
313
  if (flush === 'sync') {
314
314
  watcher.update = watcher.run
315
315
  } else if (flush === 'post') {
316
- watcher.id = Infinity
316
+ watcher.post = true
317
317
  watcher.update = () => queueWatcher(watcher)
318
318
  } else {
319
319
  // pre
package/types/vue.d.ts CHANGED
@@ -14,7 +14,7 @@ import { VNode, VNodeData, VNodeChildren, NormalizedScopedSlot } from './vnode'
14
14
  import { PluginFunction, PluginObject } from './plugin'
15
15
  import { DefineComponent } from './v3-define-component'
16
16
  import { nextTick } from './v3-generated'
17
- import { ComponentPublicInstance } from 'v3-component-public-instance'
17
+ import { ComponentPublicInstance } from './v3-component-public-instance'
18
18
 
19
19
  export interface CreateElement {
20
20
  (