Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/ThePage.vue
Pascal Martineau 7558da689d
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 59s
feat: Initial useNodeByUri
2025-09-03 14:45:31 -04:00

12 lines
242 B
Vue

<script setup lang="ts">
import type { ThePageFragment } from "#graphql-operations";
defineProps<{ node: ThePageFragment }>();
</script>
<template>
<UPage>
<UPageSection v-if="node.title" :title="node.title" />
</UPage>
</template>