feat: Initial GraphQL setup with remote WP schema

This commit is contained in:
2026-01-13 11:19:33 -05:00
parent a2860478a9
commit d0244eb6a3
8 changed files with 16425 additions and 70 deletions

View File

@@ -1,5 +1,10 @@
<script setup lang="ts">
const { data } = await useGraphQLQuery("GeneralSettings", undefined, { cache: { ttl: 0 } });
</script>
<template>
<div>
© {{ new Date().getFullYear() }}
<span v-if="data.generalSettings?.title">{{ data.generalSettings.title }}</span>
</div>
</template>