Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
hyf0 avatar

Vue Best Practices

  • 25.3k installs
  • 2.8k repo stars
  • Updated May 30, 2026
  • hyf0/vue-skills

vue-best-practices is a skill that guides Vue 3 development with best practices covering Composition API, TypeScript, and performance.

About

Vue 3 development best practices including Composition API, TypeScript, SSR guidance, and performance optimization. Covers gotchas, common mistakes, and validated patterns through automated evaluation. Early experiment in specialized Vue 3 agent skills.

  • Vue 3 + Composition API
  • TypeScript guidance
  • Performance optimization

Vue Best Practices by the numbers

  • 25,290 all-time installs (skills.sh)
  • +201 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #25 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

vue-best-practices capabilities & compatibility

Use cases
frontend
npx skills add https://github.com/hyf0/vue-skills --skill vue-best-practices

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs25.3k
repo stars2.8k
Security audit3 / 3 scanners passed
Last updatedMay 30, 2026
Repositoryhyf0/vue-skills

How do you enforce Vue 3 Composition API best practices?

Guide agents building Vue 3 applications with best practices validated through automated evaluation.

Who is it for?

Developers building Vue 3 frontends with Vite, Vue Router, and Pinia who want agents to follow official Composition API and TypeScript conventions.

Skip if: Developers maintaining legacy Vue 2 Options API codebases that explicitly forbid Composition API migration.

When should I use this skill?

Any task touches Vue, .vue files, Vue Router, Pinia, Vite with Vue, SSR, Volar, or vue-tsc and needs official Vue 3 standards applied.

What you get

Vue 3 components using script setup, typed props and emits, predictable reactivity patterns, and Volar-compatible TypeScript configuration.

  • standards-compliant .vue components
  • typed Composition API patterns

By the numbers

  • vue-best-practices version 18.0.0
  • MIT licensed, authored by github.com/vuejs-ai

Files

SKILL.mdMarkdownGitHub ↗

Vue Best Practices Workflow

Use this skill as an instruction set. Follow the workflow in order unless the user explicitly asks for a different order.

Core Principles

  • Keep state predictable: one source of truth, derive everything else.
  • Make data flow explicit: Props down, Events up for most cases.
  • Favor small, focused components: easier to test, reuse, and maintain.
  • Avoid unnecessary re-renders: use computed properties and watchers wisely.
  • Readability counts: write clear, self-documenting code.

1) Confirm architecture before coding (required)

  • Default stack: Vue 3 + Composition API + <script setup lang="ts">.
  • If the project explicitly uses Options API, load vue-options-api-best-practices skill if available.
  • If the project explicitly uses JSX, load vue-jsx-best-practices skill if available.

1.1 Must-read core references (required)

  • Before implementing any Vue task, make sure to read and apply these core references:
  • references/reactivity.md
  • references/sfc.md
  • references/component-data-flow.md
  • references/composables.md
  • Keep these references in active working context for the entire task, not only when a specific issue appears.

1.2 Plan component boundaries before coding (required)

Create a brief component map before implementation for any non-trivial feature.

  • Define each component's single responsibility in one sentence.
  • Keep entry/root and route-level view components as composition surfaces by default.
  • Move feature UI and feature logic out of entry/root/view components unless the task is intentionally a tiny single-file demo.
  • Define props/emits contracts for each child component in the map.
  • Prefer a feature folder layout (components/<feature>/..., composables/use<Feature>.ts) when adding more than one component.

2) Apply essential Vue foundations (required)

These are essential, must-know foundations. Apply all of them in every Vue task using the core references already loaded in section 1.1.

Reactivity

  • Must-read reference from 1.1: reactivity
  • Keep source state minimal (ref/reactive), derive everything possible with computed.
  • Use watchers for side effects if needed.
  • Avoid recomputing expensive logic in templates.

SFC structure and template safety

  • Must-read reference from 1.1: sfc
  • Keep SFC sections in this order: <script><template><style>.
  • Keep SFC responsibilities focused; split large components.
  • Keep templates declarative; move branching/derivation to script.
  • Apply Vue template safety rules (v-html, list rendering, conditional rendering choices).

Keep components focused

Split a component when it has more than one clear responsibility (e.g. data orchestration + UI, or multiple independent UI sections).

  • Prefer smaller components + composables over one “mega component”
  • Move UI sections into child components (props in, events out).
  • Move state/side effects into composables (useXxx()).

Apply objective split triggers. Split the component if any condition is true:

  • It owns both orchestration/state and substantial presentational markup for multiple sections.
  • It has 3+ distinct UI sections (for example: form, filters, list, footer/status).
  • A template block is repeated or could become reusable (item rows, cards, list entries).

Entry/root and route view rule:

  • Keep entry/root and route view components thin: app shell/layout, provider wiring, and feature composition.
  • Do not place full feature implementations in entry/root/view components when those features contain independent parts.
  • For CRUD/list features (todo, table, catalog, inbox), split at least into:
  • feature container component
  • input/form component
  • list (and/or item) component
  • footer/actions or filter/status component
  • Allow a single-file implementation only for very small throwaway demos; if chosen, explicitly justify why splitting is unnecessary.

Component data flow

  • Must-read reference from 1.1: component-data-flow
  • Use props down, events up as the primary model.
  • Use v-model only for true two-way component contracts.
  • Use provide/inject only for deep-tree dependencies or shared context.
  • Keep contracts explicit and typed with defineProps, defineEmits, and InjectionKey as needed.

Composables

  • Must-read reference from 1.1: composables
  • Extract logic into composables when it is reused, stateful, or side-effect heavy.
  • Keep composable APIs small, typed, and predictable.
  • Separate feature logic from presentational components.

3) Consider optional features only when requirements call for them

3.1 Standard optional features

Do not add these by default. Load the matching reference only when the requirement exists.

  • Slots: parent needs to control child content/layout -> component-slots
  • Fallthrough attributes: wrapper/base components must forward attrs/events safely -> component-fallthrough-attrs
  • Built-in component <KeepAlive> for stateful view caching -> component-keep-alive
  • Built-in component <Teleport> for overlays/portals -> component-teleport
  • Built-in component <Suspense> for async subtree fallback boundaries -> component-suspense
  • Animation-related features: pick the simplest approach that matches the required motion behavior.
  • Built-in component <Transition> for enter/leave effects -> transition
  • Built-in component <TransitionGroup> for animated list mutations -> transition-group
  • Class-based animation for non-enter/leave effects -> animation-class-based-technique
  • State-driven animation for user-input-driven animation -> animation-state-driven-technique

3.2 Less-common optional features

Use these only when there is explicit product or technical need.

  • Directives: behavior is DOM-specific and not a good composable/component fit -> directives
  • Async components: heavy/rarely-used UI should be lazy loaded -> component-async
  • Render functions only when templates cannot express the requirement -> render-functions
  • Plugins when behavior must be installed app-wide -> plugins
  • State management patterns: app-wide shared state crosses feature boundaries -> state-management

4) Run performance optimization after behavior is correct

Performance work is a post-functionality pass. Do not optimize before core behavior is implemented and verified.

  • Large list rendering bottlenecks -> perf-virtualize-large-lists
  • Static subtrees re-rendering unnecessarily -> perf-v-once-v-memo-directives
  • Over-abstraction in hot list paths -> perf-avoid-component-abstraction-in-lists
  • Expensive updates triggered too often -> updated-hook-performance

5) Final self-check before finishing

  • Core behavior works and matches requirements.
  • All must-read references were read and applied.
  • Reactivity model is minimal and predictable.
  • SFC structure and template rules are followed.
  • Components are focused and well-factored, splitting when needed.
  • Entry/root and route view components remain composition surfaces unless there is an explicit small-demo exception.
  • Component split decisions are explicit and defensible (responsibility boundaries are clear).
  • Data flow contracts are explicit and typed.
  • Composables are used where reuse/complexity justifies them.
  • Moved state/side effects into composables if applicable
  • Optional features are used only when requirements demand them.
  • Performance changes were applied only after functionality was complete.

Related skills

Forks & variants (4)

Vue Best Practices has 4 known copies in the catalog totaling 32k installs. They canonicalize to this original listing.

How it compares

Pick vue-best-practices for opinionated Vue 3 Composition API standards; use framework-agnostic frontend skills for non-Vue stacks.

FAQ

Does vue-best-practices require Composition API?

vue-best-practices strongly recommends Composition API with script setup and TypeScript for Vue 3 work. Options API is used only when a project explicitly requires it.

What Vue tooling does vue-best-practices cover?

vue-best-practices covers Vue 3, SSR, Volar, vue-tsc, Vue Router, Pinia, and Vite-with-Vue projects. The skill version is 18.0.0 from github.com/vuejs-ai.

Is Vue Best Practices safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.