Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/ThePage.vue

11 lines
262 B
Vue

<script setup lang="ts">
import type { ThePageFragment } from "#graphql-operations";
const props = defineProps<ThePageFragment>();
useSeoMeta({ title: props.title });
</script>
<template>
<TheSections :sections="groupPostPage?.sections || []" />
</template>