Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/TheMembership.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
284 B
Vue

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