generated from pascalmartineau/wp-skeleton
10 lines
227 B
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>
|