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