vue▌
35 indexed skills · max 10 per page
vue-options-api-best-practices
vuejs-ai/skills · Frontend
Vue 3 Options API patterns, TypeScript integration strategies, and context-binding gotchas. \n \n Covers TypeScript type safety for component properties, this context, prop validators, event handlers, complex types, provide/inject, and computed return types \n Addresses common method and lifecycle hook pitfalls: arrow function binding issues, context loss, and stateful method state leakage across instances \n Organized as a reference guide with linked examples for each pattern and anti-pattern \
vue-router-best-practices
hyf0/vue-skills · Frontend
Vue Router 4 patterns, navigation guards, and route-lifecycle best practices. \n \n Covers five navigation guard patterns including async/await handling, deprecated next() function migration, infinite redirect loops, and param-change detection \n Addresses route-lifecycle gotchas like stale data when navigating between same routes and event listener cleanup on component unmount \n Includes guidance on beforeRouteEnter guard limitations, component instance access, and param-triggered navigation b
vue-best-practices
vuejs-ai/skills · Frontend
Standard Vue 3 workflow with Composition API, <script setup> , and TypeScript as the default approach. \n \n Requires confirming project architecture upfront and reading core references on reactivity, SFCs, component data flow, and composables before implementation \n Enforces minimal source state with ref / reactive , deriving everything possible with computed , and keeping templates declarative \n Mandates component splitting when responsibilities exceed one clear purpose, with entry/root
vue
antfu/skills · Frontend
Vue 3 Composition API with script setup, reactivity system, and built-in components for single-file components. \n \n Use <script setup lang=\"ts\"> with TypeScript; leverage defineProps , defineEmits , defineModel , and other macros for type-safe component APIs \n Core reactivity includes ref , shallowRef , computed , watch , watchEffect , and lifecycle hooks; prefer shallowRef when deep reactivity isn't needed \n Built-in components cover Transition , Teleport , Suspense , KeepAlive , and
vue-pinia-best-practices
vuejs-ai/skills · Frontend
Vue Pinia state management patterns, store setup guidance, and reactivity best practices. \n \n Covers store initialization, DevTools integration, and SSR considerations for setup stores \n Addresses common reactivity pitfalls including destructuring breaks and method binding issues in templates \n Provides patterns for ephemeral state like filters, URL synchronization, and production app conventions \n References specific error scenarios with linked solutions for quick troubleshooting \n
vue-jsx-best-practices
vuejs-ai/skills · Frontend
Vue JSX syntax patterns and key differences from React JSX conventions. \n \n Covers attribute naming differences (e.g., class vs className ) and Vue-specific JSX configuration \n Includes migration guidance for developers converting React JSX code to Vue \n Addresses common type errors and render function patterns when using JSX in Vue projects \n
vue-best-practices
dedalus-erp-pas/foundation-skills · Frontend
Comprehensive best practices guide for Vue.js 3 applications. Contains guidelines across multiple categories to ensure idiomatic, maintainable, and scalable Vue.js code, including Tailwind CSS integration patterns for utility-first styling and PrimeVue component library best practices.
auth0-vue
auth0/agent-skills · Frontend
Add authentication to Vue.js 3 single-page applications using @auth0/auth0-vue.
vue
bobmatnyc/claude-mpm-skills · Frontend
Vue 3 is a progressive framework for building user interfaces with emphasis on approachability, performance, and flexibility. It features the Composition API for better logic reuse, a powerful reactivity system, and single-file components (.vue files).
vue-best-practices
uni-helper/skills · Frontend
Vue 3 best practices, common gotchas, and performance optimization.