Vue Reactivity and Async Context · Unhead

[Unhead Home](https://unhead.unjs.io/ "Home")

- [Docs](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/overview)
- [Tools](https://unhead.unjs.io/tools)
- [Learn](https://unhead.unjs.io/learn/guides/what-is-capo)

[Releases](https://unhead.unjs.io/releases)

Search…```k`` /`

[Unhead on GitHub](https://github.com/unjs/unhead)

[User Guides](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/overview)

[API](https://unhead.unjs.io/docs/nuxt/head/api/get-started/overview)

[Releases](https://unhead.unjs.io/docs/nuxt/releases/v3)

Nuxt

- [Switch to Nuxt](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/installation)
- [Switch to TypeScript](https://unhead.unjs.io/docs/typescript/head/guides/get-started/installation)
- [Switch to Vue](https://unhead.unjs.io/docs/vue/head/guides/get-started/installation)
- [Switch to React](https://unhead.unjs.io/docs/react/head/guides/get-started/installation)
- [Switch to Svelte](https://unhead.unjs.io/docs/svelte/head/guides/get-started/installation)
- [Switch to Solid.js](https://unhead.unjs.io/docs/solid-js/head/guides/get-started/installation)
- [Switch to Angular](https://unhead.unjs.io/docs/angular/head/guides/get-started/installation)

v3 (stable)

Head

- [Discord Support](https://discord.com/invite/275MBUBvgP)

- Get Started
  - [Overview](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/overview)
  - [Introduction to Unhead](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/intro-to-unhead)
  - [Starter Recipes](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/starter-recipes)
  - [Installation](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/installation)
  - [Upgrade Guide](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/migration)
- Core Concepts
  - [Titles & Title Templates](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/titles)
  - [Tag Sorting & Placement](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/positions)
  - [Class & Style Attributes](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/class-attr)
  - [Inline Style & Scripts](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/inner-content)
  - [Tag Deduplication](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/handling-duplicates)
  - [DOM Event Handling](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/dom-event-handling)
  - [Script Loading](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/loading-scripts)
  - [Context & Reactivity](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/reactivity)
  - [Components](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/components)
- Build Plugins
  - [Overview](https://unhead.unjs.io/docs/nuxt/head/guides/build-plugins/overview)
  - [Tree-Shaking](https://unhead.unjs.io/docs/nuxt/head/guides/build-plugins/tree-shaking)
  - [useSeoMeta Transform](https://unhead.unjs.io/docs/nuxt/head/guides/build-plugins/seo-meta-transform)
  - [Minify Transform](https://unhead.unjs.io/docs/nuxt/head/guides/build-plugins/minify-transform)
  - [Devtools](https://unhead.unjs.io/docs/nuxt/head/guides/build-plugins/devtools)
- Plugins
  - [Template Params](https://unhead.unjs.io/docs/nuxt/head/guides/plugins/template-params)
  - [Alias Sorting](https://unhead.unjs.io/docs/nuxt/head/guides/plugins/alias-sorting)
  - [Canonical Plugin](https://unhead.unjs.io/docs/nuxt/head/guides/plugins/canonical)
  - [Infer SEO Meta](https://unhead.unjs.io/docs/nuxt/head/guides/plugins/infer-seo-meta-tags)
  - [Minify](https://unhead.unjs.io/docs/nuxt/head/guides/plugins/minify)
  - [Validate](https://unhead.unjs.io/docs/nuxt/head/guides/plugins/validate)

Core Concepts

# Vue Reactivity and Async Context

[Copy for LLMs](https://raw.githubusercontent.com/unjs/unhead/refs/heads/main/docs/0.nuxt/head/guides/1.core-concepts/0.reactivity.md)

Last updated Jan 19, 2026 by [Harlan Wilton](https://github.com/harlan-zw) in [docs: sync](https://github.com/unjs/unhead/commit/d2f86454774aa60706628b46a850653e1e4d56d9).

On this page

- [Introduction](#introduction)
- [How Does Reactivity Work in Nuxt?](#how-does-reactivity-work-in-nuxt)
- [What Reactive Values Can I Use?](#what-reactive-values-can-i-use)
- [How Do I Handle Async Context?](#how-do-i-handle-async-context)
- [Best Practices](#best-practices)
- [Advanced Uses](#advanced-uses)
- [Does Nuxt Handle Async Context Automatically?](#does-nuxt-handle-async-context-automatically)
- [How Does Unhead Work Under the Hood?](#how-does-unhead-work-under-the-hood)

**Quick Answer:** In Nuxt, pass refs and computed values directly to `useHead()` or `useSeoMeta()`. Reactivity is automatic. Use `injectHead()` when you need the head instance outside components.

## [Introduction](#introduction)

Unhead integrates seamlessly with Vue's reactivity system, allowing you to create dynamic and responsive head tags that automatically update when your data changes. This guide explains how to effectively manage reactive head tags and handle asynchronous operations in your Vue applications.

## [How Does Reactivity Work in Nuxt?](#how-does-reactivity-work-in-nuxt)

When using any of the Unhead composables like [`useHead()`](https://unhead.unjs.io/docs/head/api/composables/use-head), full reactivity is provided out of the box. All values support Vue's reactivity system, meaning your head tags will automatically update when reactive data changes.

Behind the scenes, Unhead is attached to the Nuxt instance. When we call `useHead()`, it accesses the global Nuxt instance and uses the Unhead instance from it.

### [How Does Component Lifecycle Affect Head Tags?](#how-does-component-lifecycle-affect-head-tags)

Unhead integrates automatically with Vue's component lifecycle:

- When a component is unmounted, any head entries created by that component are automatically removed
- When a component is deactivated with keep-alive, its entries will be deactivated
- When a component is activated with keep-alive, its entries will be reactivated

This ensures your head tags stay in sync with your component's visibility state and prevents memory leaks when components are destroyed.

### [What Is the Difference Between Client and Server Reactivity?](#what-is-the-difference-between-client-and-server-reactivity)

Reactivity behaves differently depending on the rendering context:

- **Server-Side Rendering (SSR)**: Values are resolved only when the tags are being rendered, usually after the app has finished rendering.
- **Client-Side Rendering (CSR)**: Any ref changes trigger a DOM update, making the head tags reactive after hydration.

## [What Reactive Values Can I Use?](#what-reactive-values-can-i-use)

Unhead works with all Vue reactive primitives:

```
import { useHead } from '#imports'
import { computed, ref } from 'vue'

// Create reactive state
const title = ref('My Site')
const description = ref('Welcome to my website')

// Use reactive values in head tags
useHead({
  // Direct ref
  title,
  meta: [
    // Computed getter (recommended for derived values)
    { name: 'description', content: () => description.value },
    // Using refs directly in objects
    { property: 'og:title', content: title }
  ],
  // Computed ref
  link: [computed(() => ({
    rel: 'canonical',
    href: \`https://example.com/products/${product.value.name}\`
  }))]
})
```

## [How Do I Handle Async Context?](#how-do-i-handle-async-context)

The `inject()` function keeps track of your Vue component instance, but after async operations within lifecycle hooks or nested functions, Vue can lose track of this context.

```
<script setup lang="ts">
import { useHead } from '#imports'
import { onMounted } from 'vue'

onMounted(async () => {
  await someAsyncOperation()
  // This will throw an error
  useHead({
    title: 'My Title'
  })
})
</script>
```

When trying to inject once Vue has lost the context, you'll receive an error from Unhead:

useHead() was called without provide context.

Let's explore several solutions to handle this problem effectively.

### [Can I Use Top Level Await?](#can-i-use-top-level-await)

Vue's script setup handles async operations through [compile-time transforms](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0040-script-setup.md#top-level-await) that preserve the component instance context. The Vue team devised an elegant solution for maintaining async context through these script setup transforms.

At the top level of script setup, context is automatically preserved:

```
<script setup lang="ts">
import { useHead } from '#imports'

// The compiler transforms this to preserve context
await someAsyncOperation()
useHead({
  title: 'My Title'
})
</script>
```

This is the simplest and most effective way to handle async operations in Vue. For a deeper understanding of how async context evolved in Vue's Composition API, check out Anthony Fu's [detailed exploration](https://antfu.me/posts/async-with-composition-api) of the topic.

### [How Do I Use effectScope for Async Operations?](#how-do-i-use-effectscope-for-async-operations)

The `effectScope()` API allows you to re-run a code block using the same component context:

```
<script setup lang="ts">
import { useHead } from '#imports'
import { effectScope, onMounted } from 'vue'

// Create an effect scope before any async operations
const scope = effectScope()

onMounted(async () => {
  const data = await fetchData()

  // Run all effects within this scope
  scope.run(() => {
    // All composables inside here will be properly cleaned up
    useHead({
      title: data.title,
      meta: [
        {
          name: 'description',
          content: data.description
        }
      ]
    })
  })
})
</script>
```

### [When Should I Use injectHead?](#when-should-i-use-injecthead)

The `injectHead()` function lets us grab a reference to Unhead's instance before any async operations occur:

```
<script setup lang="ts">
import { injectHead, useHead } from '#imports'
import { onMounted } from 'vue'

// Store the head instance at setup time
const head = injectHead()

// For simple updates, we don't need to pass the head instance
useHead({
  title: 'My Site'
})

// Inside async functions, we must pass the head instance
async function updatePageHead(id: string) {
  const data = await fetchPage(id)

  // Pass head as an option to maintain context
  useHead({
    title: data.title,
    meta: [
      {
        name: 'description',
        content: data.description
      }
    ]
  }, { head }) // The head instance ensures the update works
}

// The same applies for lifecycle hooks
onMounted(async () => {
  const analyticsData = await loadAnalytics()

  useHead({
    script: [
      {
        // Analytics script injection after load
        textContent: analyticsData.scriptContent
      }
    ]
  }, { head })
})
</script>
```

The key idea is that `injectHead()` should be called at the top level of your component, before any async operations.

### [What Is the Best Way to Handle Async Head Updates?](#what-is-the-best-way-to-handle-async-head-updates)

The most elegant way to handle async head updates is to combine reactive state with `useHead()`:

```
<script setup lang="ts">
import { useHead } from '#imports'
import { computed, ref } from 'vue'

// Initialize your reactive state
const page = ref({
  title: 'Loading...',
  description: '',
  image: '/placeholder.jpg'
})

// Define head once with computed properties
useHead({
  // Title will automatically update when page.value.title changes
  title: computed(() => page.value.title),
  meta: [
    {
      name: 'description',
      content: computed(() => page.value.description)
    },
    {
      property: 'og:image',
      content: computed(() => page.value.image)
    }
  ]
})

// Your async operations just update the reactive state
async function loadPage(id: string) {
  const data = await fetchPage(id)
  // Head updates automatically when we update the ref
  page.value = {
    title: data.title,
    description: data.description,
    image: data.image
  }
}

// Works great with watchers too
watch(route, async () => {
  await loadPage(route.params.id)
})
</script>
```

This reactive state pattern aligns well with Vue's Composition API design and often results in cleaner, more maintainable code.

#### [How Do I Use Head with Pinia?](#how-do-i-use-head-with-pinia)

You can also use this pattern with more complex state management:

```
<script setup lang="ts">
import { storeToRefs } from 'pinia'
import { usePageStore } from '@/stores/page'

const store = usePageStore()
// Destructure with storeToRefs to maintain reactivity
const { title, description } = storeToRefs(store)

useHead({
  title, // Reactive store state automatically works
  meta: [
    {
      name: 'description',
      content: description
    }
  ]
})

// Now your store actions can update the head
await store.fetchPage(id)
</script>
```

## [Best Practices](#best-practices)

### [Should I Use Refs or Computed Getters?](#should-i-use-refs-or-computed-getters)

For the best performance and clarity, prefer direct refs and computed getters:

```
// ✅ Good approach
const title = ref('Product Page')
const product = ref({ name: 'Widget' })

useHead({
  // Direct ref
  title,
  // Computed getter
  meta: [
    { property: 'og:title', content: () => \`${product.value.name} - ${title.value}\` }
  ]
})
```

### [Can I Call useHead Inside a Watcher?](#can-i-call-usehead-inside-a-watcher)

Avoid `useHead()` calls in watchers, as this creates new entries on each update:

```
// ❌ Bad approach: Creates multiple entries
watch(title, (newTitle) => {
  useHead({
    title: newTitle
  })
})

// ✅ Good approach: Updates existing entry
useHead({
  title // ref value updates automatically
})
```

### [How Do I Optimize Frequent Component Mounts?](#how-do-i-optimize-frequent-component-mounts)

When components are frequently mounted and unmounted, consider using Vue's built-in mechanisms like `v-if`/`v-show` or `<KeepAlive>` to optimize head tag management:

```
// Using keep-alive allows Unhead to optimize head updates
<KeepAlive>
  <component :is="currentView" />
</KeepAlive>
```

## [Advanced Uses](#advanced-uses)

### [How Do I Create Dynamic SEO Meta Tags?](#how-do-i-create-dynamic-seo-meta-tags)

```
import { useRoute } from 'vue-router'

export default {
  setup() {
    const route = useRoute()
    const product = ref(null)

    // Fetch data based on route
    fetchProduct(route.params.id).then((data) => {
      product.value = data
    })

    // SEO tags update automatically when product data is loaded
    // https://unhead.unjs.io/docs/head/api/composables/use-seo-meta
    useSeoMeta({
      title: () => product.value?.name || 'Loading...',
      description: () => product.value?.description || '',
      ogImage: () => product.value?.image || '/default.jpg',
    })
  }
}
```

### [Can I Use Multiple useHead Calls?](#can-i-use-multiple-usehead-calls)

You can use multiple `useHead()` calls in different components, and Unhead will handle merging them correctly:

```
// BaseLayout.vue
useHead({
  titleTemplate: '%s | My Site',
  meta: [
    { name: 'theme-color', content: '#ff0000' }
  ]
})

// ProductPage.vue
useHead({
  title: product.name,
  meta: [
    { name: 'description', content: product.description }
  ]
})
```

## [Does Nuxt Handle Async Context Automatically?](#does-nuxt-handle-async-context-automatically)

When using Nuxt, you don't need to worry about managing async context for head updates. This is because Nuxt attaches Unhead directly to the Nuxt application instance which is globally accessible regardless of the async operation.

This allows you to use `useHead()` anywhere in your Nuxt application, including plugins, middleware, and layouts without worrying about context.

If you're using Nuxt, async context management is handled automatically by the framework, so you can focus on the reactive aspects of your head tags.

## [How Does Unhead Work Under the Hood?](#how-does-unhead-work-under-the-hood)

Under the hood, Unhead in Vue:

1. Uses Vue's provide/inject system for head instance management
2. Leverages `watchEffect` to track reactive dependencies
3. Integrates with Vue's component lifecycle hooks
4. Uses Vue's reactive resolver to unwrap refs and computed values

This implementation ensures seamless integration with Vue's reactivity system while maintaining performance and proper cleanup. If you're interested in the technical details of Vue's script setup implementation, check out the [Script Setup RFC](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0040-script-setup.md#top-level-await).

[Edit this page](https://github.com/unjs/unhead/edit/main/docs/0.nuxt/head/guides/1.core-concepts/0.reactivity.md)

[Markdown For LLMs](https://raw.githubusercontent.com/unjs/unhead/refs/heads/main/docs/0.nuxt/head/guides/1.core-concepts/0.reactivity.md)

Did this page help you?

[Upgrade Guide Learn how to migrate between Unhead versions in Nuxt.](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/migration) [Components Use Nuxt built-in Head, Title, Meta, Link, Script components. Template-based head management with no imports required.](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/components)

On this page

- [Introduction](#introduction)
- [How Does Reactivity Work in Nuxt?](#how-does-reactivity-work-in-nuxt)
- [What Reactive Values Can I Use?](#what-reactive-values-can-i-use)
- [How Do I Handle Async Context?](#how-do-i-handle-async-context)
- [Best Practices](#best-practices)
- [Advanced Uses](#advanced-uses)
- [Does Nuxt Handle Async Context Automatically?](#does-nuxt-handle-async-context-automatically)
- [How Does Unhead Work Under the Hood?](#how-does-unhead-work-under-the-hood)

[GitHub](https://github.com/unjs/unhead) [ Discord](https://discord.com/invite/275MBUBvgP)

[ /llms.txt](https://unhead.unjs.io/llms.txt)

[Part of the UnJS ecosystem](https://unjs.io/)

### Head Management

- [Getting Started](https://unhead.unjs.io/docs/nuxt/head/guides/get-started/overview)
- [useHead](https://unhead.unjs.io/docs/nuxt/head/api/composables/use-head)
- [useSeoMeta](https://unhead.unjs.io/docs/nuxt/head/api/composables/use-seo-meta)
- [useHeadSafe](https://unhead.unjs.io/docs/nuxt/head/api/composables/use-head-safe)
- [useScript](https://unhead.unjs.io/docs/nuxt/head/api/composables/use-script)

### Schema.org

- [Getting Started](https://unhead.unjs.io/docs/nuxt/schema-org/guides/get-started/overview)
- [useSchemaOrg](https://unhead.unjs.io/docs/nuxt/schema-org/api/composables/use-schema-org)
- [Nodes](https://unhead.unjs.io/docs/nuxt/schema-org/guides/core-concepts/nodes)
- [Recipes](https://unhead.unjs.io/docs/nuxt/schema-org/guides/recipes/identity)

### Guides

- [Titles](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/titles)
- [Streaming SSR](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/streaming)
- [DOM Events](https://unhead.unjs.io/docs/nuxt/head/guides/core-concepts/dom-event-handling)
- [Plugins](https://unhead.unjs.io/docs/nuxt/head/guides/plugins/template-params)

### Tools

- [Meta Tag Generator](https://unhead.unjs.io/tools/meta-tag-generator)
- [OG Image Generator](https://unhead.unjs.io/tools/og-image-generator)
- [Schema.org Generator](https://unhead.unjs.io/tools/schema-generator)
- [Capo.js Analyzer](https://unhead.unjs.io/tools/capo-analyzer)

### Articles

- [What is Capo.js?](https://unhead.unjs.io/learn/guides/what-is-capo)

### Research

- [State of <head> in 2026](https://unhead.unjs.io/learn/research/state-of-head-2026)
- [Streaming Head Performance](https://unhead.unjs.io/learn/research/streaming-head-performance)
- [Capo.js Performance Research](https://unhead.unjs.io/learn/research/capo-performance-research)

Copyright © 2025-2026 Harlan Wilton - [MIT License](https://github.com/unjs/unhead/blob/main/license)