UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

9 lines (8 loc) 273 B
import { polyfillAsVueUseHead } from "@unhead/vue/polyfill"; import { defineNuxtPlugin } from "#app/nuxt"; export default defineNuxtPlugin({ name: "nuxt:vueuse-head-polyfill", setup(nuxtApp) { polyfillAsVueUseHead(nuxtApp.vueApp._context.provides.usehead); } });