vue-skilld▌
harlan-zw/vue-ecosystem-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
The progressive JavaScript framework for building modern web UI.
vuejs/core vue
The progressive JavaScript framework for building modern web UI.
Version: 3.6.0-beta.8 Deps: @vue/[email protected], @vue/[email protected], @vue/[email protected], @vue/[email protected], @vue/[email protected], @vue/[email protected] Tags: csp: 1.0.28-csp, legacy: 2.7.16, v2-latest: 2.7.16, rc: 3.5.0-rc.1, alpha: 3.6.0-alpha.7, beta: 3.6.0-beta.8, latest: 3.5.30
References: Docs — API reference, guides • GitHub Issues — bugs, workarounds, edge cases • GitHub Discussions — Q&A, patterns, recipes • Releases — changelog, breaking changes, new APIs
API Changes
This section documents version-specific API changes — prioritize recent major/minor releases.
-
NEW:
createVaporApp()(experimental) — new in v3.6, creates a Vapor-mode app instance without pulling in the Virtual DOM runtime; usecreateApp()for standard VDOM apps source -
NEW:
vaporInteropPlugin(experimental) — new in v3.6, install into a VDOMcreateApp()instance to allow Vapor components inside VDOM trees; without it, Vapor SFCs cannot be used in VDOM apps source -
NEW:
<script setup vapor>attribute (experimental) — new in v3.6, opts an SFC into Vapor Mode compilation; only works with<script setup>; does not support Options API,app.config.globalProperties, orgetCurrentInstance()source -
NEW:
useTemplateRef(key)— new in v3.5, preferred replacement for plainrefvariable names matchingref="key"attributes; supports dynamic string IDs at runtime unlike the old static-only pattern source -
NEW:
useId()— new in v3.5, generates stable unique IDs per component instance guaranteed to match between SSR and client hydration; replaces manual ID management for form/accessibility attributes source -
NEW:
onWatcherCleanup(fn)— new in v3.5, registers a cleanup callback inside awatchorwatchEffectcallback; replaces theonCleanupparameter pattern and can be called from nested functions source -
NEW:
hydrateOnVisible(),hydrateOnIdle(),hydrateOnInteraction(),hydrateOnMediaQuery()— new in v3.5, lazy hydration strategies passed todefineAsyncComponent({ hydrate: hydrateOnVisible() }); without thehydrateoption, async components hydrate immediately source -
NEW:
defineModel()stable — promoted from experimental in v3.3 to stable in v3.4; automatically declares a prop and returns a mutable ref; replaces the manualdefineProps+defineEmits('update:modelValue')pattern source -
NEW:
definePropsdestructure with defaults — stabilized in v3.5 (was experimental in v3.3);const { count = 0 } = defineProps<{ count?: number }>()replaceswithDefaults(defineProps<...>(), { count: 0 }); destructured vars must be wrapped in getters to pass towatch()or composables source -
BREAKING:
@vnodeXXXevent listeners — removed in v3.4, are now a compiler error; use@vue:XXXlisteners instead (e.g.@vue:mounted) source -
BREAKING: Reactivity Transform (
$ref,$computed, etc.) — removed in v3.4 after being deprecated in v3.3; was experimental and distinct from the now-stable props destructure feature; use Vue Macros plugin to continue using it source -
BREAKING: Global
JSXnamespace — no longer registered by default since v3.4; setjsxImportSource: "vue"intsconfig.jsonor importvue/jsxto restore it; affects TSX users only source -
BREAKING:
app.config.unwrapInjectedRef— removed in v3.4; ref unwrapping ininject()is now always enabled and cannot be disabled source -
NEW:
<Teleport defer>prop — new in v3.5, mounts the teleport after the current render cycle so the target element can be rendered by Vue in the same component tree; requires explicitdeferattribute for backwards compatibility source
Also changed: defineSlots<{}>() macro NEW v3.3 for typed slot declarations · defineOptions({}) macro NEW v3.3 to set component options without a separate <script> block · toRef(() => getter) enhanced in v3.3 to accept plain values and getters · toValue() NEW v3.3 normalizes values/getters/refs to values (inverse of toRef) · v-bind same-name shorthand NEW v3.4 (:id shorthand for :id="id") · data-allow-mismatch attribute NEW v3.5 to suppress hydration mismatch warnings · useHost() / useShadowRoot() NEW v3.5 for custom element host access · v-is directive REMOVED v3.4 (use is="vue:ComponentName" instead) · reactivity system alien-signals refactor in v3.6 improves memory usage with no API changes
Best Practices
-
Use reactive props destructure (3.5+) with native default value syntax instead of
withDefaults()— destructured variables are reactive and the compiler rewrites accesses toprops.xautomatically. When passing to composables orwatch, wrap in a getter:watch(() => count, ...)source -
Use
toValue()in composables to normalizeMaybeRefOrGetter<T>arguments — handles plain values, refs, and getter functions uniformly so callers can pass any form without the composable caring source -
Use
onWatcherCleanup()(3.5+) instead of theonCleanupcallback parameter inwatchandwatchEffect— it can be called from any helper function in the sync execution stack, not just the top-level callback, making cleanup logic easier to extract source -
Use
useTemplateRef()(3.5+) instead of a plainrefwith a matching variable name for template refs — supports dynamic ref IDs and provides better IDE auto-completion and type checking via@vue/language-tools2.1 source -
Use
useId()(3.5+) for form element and accessibility IDs in SSR apps — generated IDs are stable across server and client renders, preventing hydration mismatches. Avoid calling insidecomputed()as it can cause instance conflicts source -
Use
shallowRef()/shallowReactive()for large immutable data structures — deep reactivity tracks every property access via proxy traps; shallow variants avoid this overhead while still reacting to root.valuereplacement source -
Pass computed values directly as
activeprops rather than IDs for comparison — child components re-render when any received prop changes, so passing a stable boolean avoids re-rendering every list item when only one item's active state changes source -
When a computed returns a new object on every evaluation, accept
oldValueand return it unchanged when data is equivalent — avoids unnecessary downstream effect triggers since Vue 3.4+ only triggers effects when the computed value reference changes source -
Use
defineAsyncComponentwith a lazy hydration strategy (3.5+) for SSR —hydrateOnVisible(),hydrateOnIdle(),hydrateOnInteraction(), andhydrateOnMediaQuery()are tree-shakable and defer hydration until the component is actually needed
import { defineAsyncComponent, hydrateOnVisible } from 'vue'
const AsyncComp = defineAsyncComponent({
loader: () => import('./Comp.vue'),
hydrate: hydrateOnVisible()
})
- (experimental) Opt in to Vapor Mode per-component with
<script setup vapor>when targeting performance-sensitive UI — Vapor avoids Virtual DOM diffing entirely and achieves Solid/Svelte 5 benchmark parity, but does not support Options API,app.config.globalProperties, orgetCurrentInstance(). UsevaporInteropPluginto mix Vapor and VDOM components in an existing app source
How to use vue-skilld on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add vue-skilld
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches vue-skilld from GitHub repository harlan-zw/vue-ecosystem-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate vue-skilld. Access the skill through slash commands (e.g., /vue-skilld) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★36 reviews- ★★★★★Valentina Iyer· Dec 8, 2024
Useful defaults in vue-skilld — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Aanya Sethi· Dec 4, 2024
We added vue-skilld from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Luis Singh· Nov 27, 2024
vue-skilld is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Yash Thakker· Nov 23, 2024
Useful defaults in vue-skilld — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Aanya Taylor· Nov 23, 2024
vue-skilld fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Anika Sethi· Oct 18, 2024
Solid pick for teams standardizing on skills: vue-skilld is focused, and the summary matches what you get after install.
- ★★★★★Dhruvi Jain· Oct 14, 2024
Registry listing for vue-skilld matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Ava Sethi· Oct 14, 2024
vue-skilld has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Luis Bansal· Sep 25, 2024
vue-skilld is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Hassan Menon· Sep 25, 2024
vue-skilld has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 36