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

10 lines
227 B
Vue

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