ionic-vue
Installation
SKILL.md
Ionic Vue
Develop Ionic apps with Vue — project structure, components, navigation, lifecycle hooks, composables, and Vue-specific patterns.
Prerequisites
- Ionic Framework 7 or 8 with
@ionic/vue. - Vue 3.
- Node.js and npm installed.
- For iOS: Xcode installed.
- For Android: Android Studio installed.
Agent Behavior
- Auto-detect before asking. Check the project for
package.jsondependencies (@ionic/vue,vue,@capacitor/core), platforms (android/,ios/), build tools (vite.config.ts), and TypeScript usage. Only ask the user when something cannot be detected. - Guide step-by-step. Walk the user through the process one step at a time. Never present multiple unrelated questions at once.
- Adapt to the project. Detect whether the project uses
<script setup>(Composition API) or Options API and generate code that matches the existing style. Default to<script setup lang="ts">for new files unless the project uses a different pattern.