Vue
Based on Vue 3.5. Always use Composition API with <script setup lang="ts">.
Preferences
- Prefer TypeScript over JavaScript
- Prefer
<script setup lang="ts"> over <script>
- For performance, prefer
shallowRef over ref if deep reactivity is not needed
- Always use Composition API over Options API
- Discourage using Reactive Props Destructure
Core
| Topic |
Description |
Reference |
| Script Setup & Macros |
<script setup>, defineProps, defineEmits, defineModel, defineExpose, defineOptions, defineSlots, generics |
script-setup-macros |
| Reactivity & Lifecycle |
ref, shallowRef, computed, watch, watchEffect, effectScope, lifecycle hooks, composables |
core-new-apis |
Features
| Topic |
Description |
Reference |
| Built-in Components & Directives |
Transition, Teleport, Suspense, KeepAlive, v-memo, custom directives |
advanced-patterns |
Quick Reference
Component Template
<script setup lang="ts">
import { ref, computed, watch, onMounted } from 'vue'
const props = defineProps<{
title: string
count?: number
}>()
const emit = defineEmits<{
update: [value: string]
}>()
const model = defineModel<string>()
const doubled = computed(() => (props.count ?? 0) * 2)
watch(() => props.title, (newVal) => {
console.log('Title changed:', newVal)
})
onMounted(() => {
console.log('Component mounted')
})
</script>
<template>
<div>{{ title }} - {{ doubled }}</div>
</template>
Key Imports
// Reactivity
import { ref, shallowRef, computed, reactive, readonly, toRef, toRefs, toValue } from 'vue'
// Watchers
import { watch, watchEffect, watchPostEffect, onWatcherCleanup } from 'vue'
// Lifecycle
import { onMounted, onUpdated, onUnmounted, onBeforeMount, onBeforeUpdate, onBeforeUnmount } from 'vue'
// Utilities
import { nextTick, defineComponent, defineAsyncComponent } from 'vue'
Source: YuDefine/nuxt-supabase-starter — distributed by TomeVault.
1---2name: vue-463description: Vue 3 Composition API, script setup macros, reactivity system, and built-in components. Use when writing Vue SFCs, defineProps/defineEmits/defineModel, watchers, or using Transition/Teleport/Suspense/KeepAlive. Use when this capability is needed.4---5<!-- 🔒 LOCKED — managed by clade · auto-generated by sync-to-agents; edit source in .claude/ then re-run sync -->67# Vue89> Based on Vue 3.5. Always use Composition API with `<script setup lang="ts">`.1011## Preferences1213- Prefer TypeScript over JavaScript14- Prefer `<script setup lang="ts">` over `<script>`15- For performance, prefer `shallowRef` over `ref` if deep reactivity is not needed16- Always use Composition API over Options API17- Discourage using Reactive Props Destructure1819## Core2021| Topic | Description | Reference |22|-------|-------------|-----------|23| Script Setup & Macros | `<script setup>`, defineProps, defineEmits, defineModel, defineExpose, defineOptions, defineSlots, generics | [script-setup-macros](references/script-setup-macros.md) |24| Reactivity & Lifecycle | ref, shallowRef, computed, watch, watchEffect, effectScope, lifecycle hooks, composables | [core-new-apis](references/core-new-apis.md) |2526## Features2728| Topic | Description | Reference |29|-------|-------------|-----------|30| Built-in Components & Directives | Transition, Teleport, Suspense, KeepAlive, v-memo, custom directives | [advanced-patterns](references/advanced-patterns.md) |3132## Quick Reference3334### Component Template3536```vue37<script setup lang="ts">38import { ref, computed, watch, onMounted } from 'vue'3940const props = defineProps<{41 title: string42 count?: number43}>()4445const emit = defineEmits<{46 update: [value: string]47}>()4849const model = defineModel<string>()5051const doubled = computed(() => (props.count ?? 0) * 2)5253watch(() => props.title, (newVal) => {54 console.log('Title changed:', newVal)55})5657onMounted(() => {58 console.log('Component mounted')59})60</script>6162<template>63 <div>{{ title }} - {{ doubled }}</div>64</template>65```6667### Key Imports6869```ts70// Reactivity71import { ref, shallowRef, computed, reactive, readonly, toRef, toRefs, toValue } from 'vue'7273// Watchers74import { watch, watchEffect, watchPostEffect, onWatcherCleanup } from 'vue'7576// Lifecycle77import { onMounted, onUpdated, onUnmounted, onBeforeMount, onBeforeUpdate, onBeforeUnmount } from 'vue'7879// Utilities80import { nextTick, defineComponent, defineAsyncComponent } from 'vue'81```8283---84> Source: [YuDefine/nuxt-supabase-starter](https://github.com/YuDefine/nuxt-supabase-starter) — distributed by [TomeVault](https://tomevault.io).85<!-- tomevault:4.0:skill_md:2026-05-19 -->