vue-skilld
Installation
SKILL.md
vue 3.6.0-beta.17 (vuejs/core)
Pre-release beta of the 3.6 line. Two headline changes vs 3.5:
- Vapor Mode, an opt-in compilation strategy for SFCs that skips the Virtual DOM; see Vapor Mode.
- alien-signals reactivity refactor:
@vue/reactivitywas rebuilt on alien-signals for lower memory use and faster updates. No public API changes.
Package facts (from the prepared source):
- Version:
package.json:3. - The main entry re-exports
@vue/runtime-domAND@vue/runtime-vapor, so all Vapor APIs (createVaporApp,vaporInteropPlugin,defineVaporComponent) import from plainvue:dist/vue.d.ts:4-5. - Named exports added by the
vuepackage itself:compile,defineVaporAsyncComponent,withAsyncContext:dist/vue.runtime.esm-bundler.js:12. - Subpath exports:
vue/server-renderer,vue/compiler-sfc,vue/jsx-runtime,vue/jsx:package.json:36-68. - TypeScript is an optional peer dependency (
*):package.json:107-113.
Common tasks
Component with <script setup>, reactive props destructure, and defineModel: