generated from pascalmartineau/wp-skeleton
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s
12 lines
244 B
Vue
12 lines
244 B
Vue
<script setup lang="ts">
|
|
import type { TheEventFragment } from "#graphql-operations";
|
|
|
|
defineProps<{ node: TheEventFragment }>();
|
|
</script>
|
|
|
|
<template>
|
|
<UPage>
|
|
<UPageSection v-if="node.title" :title="node.title" />
|
|
</UPage>
|
|
</template>
|