What problem does it solve? Integrating Capacitor native plugins into a Vue 3 app requires framework-specific patterns for reactivity, lifecycle cleanup, routing, and meta-frameworks like Quasar and Nuxt, which are easy to get wrong and cause memory leaks or broken builds. ## Core Features & Use Cases - Composable Patterns: Wraps Capacitor plugins (Camera, Network, Geolocation) in reusable Vue composables with reactive state and automatic listener cleanup via onMounted/onUnmounted. - Router & Platform Integration: Handles deep links, Android back button behavior, and platform detection using Vue Router and Capacitor APIs. - Meta-Framework Guidance: Provides dedicated workflows for Quasar (boot files, src-capacitor structure) and Nuxt (ssr: false, .output/public webDir, client plugins). - Use Case: You have an existing Vue 3 + Vite app and want to ship it as an iOS/Android app with camera access, deep links, and correct back button behavior without leaking event listeners. ## Quick Start Add Capacitor to my Vue 3 project and create a composable that takes photos with the Camera plugin.