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