vue-js
Installation
SKILL.md
Vue 3 Composition API Skill
Progressive guidance for Vue 3 with Composition API, reactivity, and composables.
Quick Start
<script setup lang="ts">
import { ref, computed } from 'vue'
const count = ref(0)
const doubled = computed(() => count.value * 2)
function increment() {
count.value++
}
</script>