When true, multiple synchronous dispatches within the same microtask are
accumulated and the signal is written once via queueMicrotask. Pairs with
Vue 3.6.0-beta.12's v-for source coalescing: our side defers the signal
write, Vue's runtime coalesces the resulting DOM update into one pass.
Trade-off: 1 microtask of signal latency. Use for arrays consumed by v-for
that receive rapid bulk updates (batch dispatch, form field arrays, scroll
position lists). Default: false (immediate write per dispatch).
When true, multiple synchronous dispatches within the same microtask are accumulated and the signal is written once via
queueMicrotask. Pairs with Vue 3.6.0-beta.12's v-for source coalescing: our side defers the signal write, Vue's runtime coalesces the resulting DOM update into one pass.Trade-off: 1 microtask of signal latency. Use for arrays consumed by v-for that receive rapid bulk updates (batch dispatch, form field arrays, scroll position lists). Default: false (immediate write per dispatch).