debug:vue

Installation
SKILL.md

Vue.js Debugging Guide

A systematic approach to debugging Vue.js 3 applications, covering common error patterns, debugging tools, and resolution strategies.

Common Error Patterns

1. Reactivity Not Working

Symptoms:

  • Data changes but UI does not update
  • Computed properties return stale values
  • Watch callbacks not firing

Common Causes:

// WRONG: Adding new properties to reactive object
const state = reactive({ count: 0 })
state.newProp = 'value'  // Not reactive in Vue 2, works in Vue 3 with Proxy
Installs
28
GitHub Stars
9
First Seen
Jan 25, 2026
debug:vue — snakeo/claude-debug-and-refactor-skills-plugin