Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/TheLocation.vue

12 lines
250 B
Vue

<script setup lang="ts">
import type { TheLocationFragment } from "#graphql-operations";
defineProps<{ node: TheLocationFragment }>();
</script>
<template>
<UPage>
<UPageSection v-if="node.title" :title="node.title" />
</UPage>
</template>