Files
cultureat-bak/wp-content/themes/ccat/app/components/nodes/TheArticle.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

12 lines
248 B
Vue

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