Skip to content
Snippets Groups Projects

Add Rousset article of detocs

Merged ftesson requested to merge add_francois_detocs into dev
All threads resolved!
Files
8
+ 14
0
<script setup lang="ts">
const { page } = useContent();
const contributorsString = computed(() => {
if (page.value?.contributors) {
return page.value.contributors.join(', ')
} else { return null }
})
</script>
<template>
<div v-if="contributorsString" class="mt-n6 mb-6 text-subtitle-1 text-info">Contributors: {{ contributorsString }}
</div>
</template>
\ No newline at end of file
Loading