Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

v3.6.0-rc.1

Vue 3.6 is now entering the RC phase as we have completed the intended feature set for Vapor Mode. 3.6 also includes a major refactor of @vue/reactivity based on alien-signals, which significantly improves the reactivity system's…

0
↗ Quelle (github.com)
Reagiere als Erste:r — dein Feedback zählt!

Vue 3.6 is now entering the RC phase as we have completed the intended feature set for Vapor Mode.


3.6 also includes a major refactor of @vue/reactivity based on alien-signals, which significantly improves the reactivity system's performance and memory usage.


For more details about Vapor Mode, see the About Vapor Mode section later in this release note.


Bug Fixes



  • hydration: avoid resolving inherited fallback in forwarded slots (4c215b5)

  • hydration: remove adopted SSR DOM for unresolved async setup (3859af4)

  • runtime-vapor: avoid patching invalid VNode slot content (25f5a8a)

  • runtime-vapor: clean up detached slot branches (b41009d)

  • runtime-vapor: defer slot content anchors during hydration (9b9e4bd)

  • runtime-vapor: preserve outer pending slot anchors (4af4bf9)

  • runtime-vapor: preserve slot content anchors during mismatch recovery (26f90b5)

  • runtime-vapor: preserve v-show transition on vdom child (#15074) (fe882c9), closes #15073

  • runtime-vapor: preserve vapor slot owner during interop slot dry run (#15031) (340630e)

  • runtime-vapor: preserve VNode anchors in dynamic component hydration (898e2ca)

  • runtime-vapor: remove unsafe slot dry runs from vdom interop (#15089) (3d42cdf), closes #14793

  • runtime-vapor: reuse hydration anchor candidates (06778e7)

  • vapor: handle v-if and v-show on transition roots (#15069) (8f62f2e), closes #15068


About Vapor Mode


Vapor Mode is a new compilation mode for Vue Single-File Components (SFCs) with the goal of reducing baseline bundle size and improving performance.


It is 100% opt-in and supports a subset of existing Vue APIs with mostly identical behavior. Features that depend on VNodes or the component public instance proxy are not available in Vapor components.


Vapor Mode has demonstrated the same level of performance as Solid and Svelte 5 in third-party benchmarks.


General Stability Notes


Vapor Mode is feature-complete in Vue 3.6 RC. For now, we recommend using it in the following cases:



  • Partial usage in existing apps, such as implementing a performance-sensitive page in Vapor Mode.

  • Building small new apps entirely in Vapor Mode.


Opting In to Vapor Mode


Vapor Mode supports template-only SFCs and SFCs using <script setup>; the Options API is not supported. The following forms are supported:


<script setup vapor>
// ...
</script>

<script vapor> is shorthand for <script setup vapor>:


<script vapor>
// ...
</script>

The vapor marker can also be placed on the template, enabling Vapor compilation for the entire SFC:


<template vapor>
<!-- ... -->
</template>

Creating an App and Using VDOM Interop


Pure Vapor Applications


Applications composed entirely of Vapor components can use createVaporApp():


import { createVaporApp } from 'vue'
import App from './App.vue'

createVaporApp(App).mount('#app')

Apps created this way avoid pulling in the Virtual DOM runtime code and allow the baseline bundle size to be drastically reduced.


Enabling VDOM Interop


To use Vapor components in a VDOM app instance created via createApp(), the vaporInteropPlugin must be installed:


import { createApp, vaporInteropPlugin } from 'vue'
import App from './App.vue'

createApp(App).use(vaporInteropPlugin).mount('#app')

A Vapor app instance can also install vaporInteropPlugin to allow VDOM components to be used inside, but this pulls in the VDOM runtime and offsets the benefits of a smaller bundle.


Components authored with render functions or JSX remain VDOM components and also require interop when used in a Vapor application.


When the interop plugin is installed, Vapor and non-Vapor components can be nested inside each other. This currently covers standard props, events, and slots usage, but does not yet account for all possible edge cases. For example, there may still be rough edges when using a VDOM-based component library in Vapor Mode.


In general, we recommend having distinct regions in an app where one rendering mode or the other is used, and avoiding mixed nesting as much as possible.


Feature Compatibility


By design, Vapor Mode supports a subset of existing Vue features. For the supported subset, we aim to deliver the same behavior according to the API specifications. The following features are currently unsupported or do not apply to Vapor Mode:



  • Options API

  • app.config.globalProperties

  • getCurrentInstance() returns null in Vapor components

  • @vue:xxx per-element lifecycle events

  • v-memo

  • Component template refs do not expose properties such as $el, $props, $attrs, $slots, and $refs


Important Usage Considerations


Event Delegation and stopPropagation()


Vapor delegates eligible events to document. Each element stores its own handler, and a single document listener walks the event path and invokes matching handlers.


If any ancestor calls stopPropagation(), the event never reaches document, and the delegated handler will not run.


The following forms bypass delegation and attach the listener directly to the element:


<button @[event]="onClick" />
<button v-bind="{ onClick }" />
<button v-on="{ click: onClick }" />

slots.default() Is Not a Safe Dry Run


In Vapor, slots.default() is not a side-effect-free inspection API. Calling it executes the slot's rendering logic, which may create Blocks and DOM nodes, register reactive effects, and claim existing SSR DOM during hydration.


Do not call a slot to inspect its output before deciding what else to render:


<script setup vapor>
import { useSlots } from 'vue'

const slots = useSlots()
const content = slots.default?.()
const showFallback = !content
</script>

<template>
<div v-if="showFallback">Fallback</div>
</template>

Instead, leave slot rendering to the template:


<template>
<slot />
</template>

Custom Directives Use a Different Interface


Custom directives in Vapor also have a different interface:


type VaporDirective = (
node: Element | VaporComponentInstance,
value?: () => any,
argument?: string,
modifiers?: DirectiveModifiers,
) => (() => void) | void

value is a reactive getter that returns the binding value. Reactive effects can be set up using watchEffect() and are automatically released when the component unmounts. A directive may also return a cleanup function:


const MyDirective = (el, source) => {
watchEffect(() => {
el.textContent = source()
})
return () => console.log('cleanup')
}

Behavior Consistency


Vapor Mode attempts to match VDOM Mode behavior as much as possible, but minor inconsistencies may still exist in edge cases because the two rendering modes are fundamentally different. In general, a minor inconsistency is not considered a breaking change unless the behavior has previously been documented.


For stable releases, please refer to CHANGELOG.md for details.

For pre-releases, please refer to CHANGELOG.md of the minor branch.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten v3.6.0-rc.1

Thematisch verwandte Begriffe: v360rc1 · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94030 | A security vulnerability has been detected in SerenityOS up to 3d83e4509…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick