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