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) 322 B
import { DefineSetupFnComponent, SlotsType, VNode } from "vue"; //#region src/pages/runtime/page-placeholder.d.ts type PagePlaceholderSlots = SlotsType<{ default?: () => VNode[]; }>; declare const PagePlaceholder: DefineSetupFnComponent<{}, {}, PagePlaceholderSlots>; //#endregion export { PagePlaceholder as default };