Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #14 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
24 lines
685 B
Vue
24 lines
685 B
Vue
<template>
|
|
<section class="mb-10">
|
|
<div class="flex items-center gap-3 border-b-2 border-primary-500 pb-3 mb-6">
|
|
<Icon :name="section.icon" size="28" class="text-primary-500"/>
|
|
<h2 class="text-xl font-bold text-primary-500">{{ section.title }}</h2>
|
|
</div>
|
|
<div class="space-y-8 pl-2">
|
|
<DocumentationArticle
|
|
v-for="article in section.articles"
|
|
:key="article.id"
|
|
:article="article"
|
|
/>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { DocSection } from '~/types/documentation'
|
|
|
|
defineProps<{
|
|
section: DocSection
|
|
}>()
|
|
</script>
|