MCPcopy
hub / github.com/vuejs/composition-api / watchPostEffect

Function watchPostEffect

src/apis/watch.ts:409–411  ·  view source on GitHub ↗
(effect: WatchEffect)

Source from the content-addressed store, hash-verified

407}
408
409export function watchPostEffect(effect: WatchEffect) {
410 return watchEffect(effect, { flush: 'post' })
411}
412
413export function watchSyncEffect(effect: WatchEffect) {
414 return watchEffect(effect, { flush: 'sync' })

Callers

nothing calls this directly

Calls 1

watchEffectFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…