15 lines
317 B
Vue
15 lines
317 B
Vue
<script setup lang="ts">
|
|
import type { NodePageFragment } from "#graphql/operations";
|
|
|
|
defineProps<NodePageFragment>();
|
|
</script>
|
|
|
|
<template>
|
|
<div id="node-page">
|
|
<h1 v-if="!isFrontPage" class="font-bold text-4xl">
|
|
{{ title }}
|
|
</h1>
|
|
<BuilderSections v-bind="groupPostPage" />
|
|
</div>
|
|
</template>
|