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.

8 lines (7 loc) 308 B
import { NuxtApp } from "#app/nuxt"; import { createHead } from "@unhead/vue/client"; //#region src/head/runtime/install-client-head.d.ts type ClientHead = ReturnType<typeof createHead>; declare function installClientHead(nuxtApp: NuxtApp, head: ClientHead): void; //#endregion export { installClientHead };