Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/TheListing.vue
Pascal Martineau 299213d5e9
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m6s
refactor: membership => profile
2025-09-24 16:01:46 -04:00

13 lines
278 B
Vue

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