13 lines
317 B
Vue
13 lines
317 B
Vue
<script setup lang="ts">
|
|
import type { NodePageFragment } from "#graphql/operations";
|
|
|
|
defineProps<NodePageFragment>();
|
|
</script>
|
|
|
|
<template>
|
|
<div id="node-page">
|
|
<PageHeader v-if="!isFrontPage" :title="title"></PageHeader>
|
|
<BuilderSections :sections="groupPostPage?.sections || []" />
|
|
</div>
|
|
</template>
|