Files
librodrome/app/composables/usePageContent.ts
2026-02-20 12:55:10 +01:00

6 lines
171 B
TypeScript

export function usePageContent<T = Record<string, unknown>>(name: string) {
return useAsyncData<T>(`page-${name}`, () =>
$fetch(`/api/content/pages/${name}`),
)
}