generated from pascalmartineau/wp-skeleton
12 lines
250 B
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>
|