// `usePageContext` allows us to access `pageContext` in any Vue component. // See https://vike.dev/pageContext-anywhere import { inject } from 'vue' import { PageContext } from './types' import type { App, InjectionKey } from 'vue' export { usePageContext } export { setPageContext } const key: InjectionKey = Symbol(undefined) function usePageContext() { const pageContext = inject(key) if (!pageContext) throw new Error('setPageContext() not called in parent') return pageContext } function setPageContext(app: App, pageContext: PageContext) { app.provide(key, pageContext) }