Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/ThePage.vue
Pascal Martineau e9c92840fc
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m5s
feat: Virtual page redirect, breadcrumb & menu items
2025-09-25 21:28:23 -04:00

16 lines
385 B
Vue

<script setup lang="ts">
import type { ThePageFragment } from "#graphql-operations";
const props = defineProps<ThePageFragment>();
if (props.template?.__typename === "Template_VirtualPage") {
await navigateTo(props.children?.nodes[0]?.uri || "/");
}
useSeoMeta({ title: props.title });
</script>
<template>
<TheSections :sections="groupPostPage?.sections || []" />
</template>