generated from pascalmartineau/wp-skeleton
feat: Routes de l'arborescence
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s
This commit is contained in:
11
wp-content/themes/ccat/app/components/nodes/TheResource.vue
Normal file
11
wp-content/themes/ccat/app/components/nodes/TheResource.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user