107 wires and counting

$ follow Vue.js

Keep up with Vue.js in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-09
stories 1

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Compiler-SFC fix restores await scope in nested blocks

By RepoJournal · Filed · About Vue.js

1 person shipped this

vuejs/core fixes an await scope leak in compiler-sfc that could break code generation inside nested blocks.

vuejs/core landed a compiler-sfc fix [1] that restores the await scope when leaving nested blocks, closing issue #15465. The bug caused the compiler to lose track of the async context after exiting a nested block, which could lead to incorrect code generation for await expressions in those scopes.

This is a targeted fix for the SFC compiler. If you use await inside nested blocks within script setup or composition APIs, this restores the intended behavior. No breaking changes are introduced.

Quick answers

What shipped in Vue.js on September 9, 2026?
vuejs/core fixes an await scope leak in compiler-sfc that could break code generation inside nested blocks. In total, 1 commits landed.
Who contributed to Vue.js on September 9, 2026?
1 developer shipped this update, including daiwei.
What were the notable Vue.js updates?
fix(compiler-sfc): restore await scope when leaving nested blocks.