Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/TheResource.vue
Pascal Martineau 4c3f0a26bf
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s
feat: Routes de l'arborescence
2025-09-15 14:38:14 -04:00

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>