feat: Initial NodeByUri logic and frontend
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
fragment NodePage on Page {
|
||||
title
|
||||
groupPostPage {
|
||||
... BuilderSections
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import type { NodePageFragment } from "#graphql/typed-documents";
|
||||
|
||||
defineProps<NodePageFragment>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div id="node-page">
|
||||
<h1 class="font-bold text-4xl">
|
||||
{{ title }}
|
||||
</h1>
|
||||
<BuilderSections v-bind="groupPostPage" />
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user