Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/TheResource.vue
Pascal Martineau 5c49583287
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 59s
refactor: nodes props
2025-09-24 15:23:34 -04:00

13 lines
280 B
Vue

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