Intégration fonctionnalites V1

This commit is contained in:
bastien
2026-07-04 22:30:18 +02:00
parent 55a558b536
commit 10ee859602
54 changed files with 4802 additions and 1018 deletions
@@ -0,0 +1,28 @@
<script setup>
import { labelClass } from '@/Components/Supervisor/ui.js';
defineProps({
label: {
type: String,
required: true,
},
hint: {
type: String,
default: '',
},
fieldClass: {
type: String,
default: '',
},
});
</script>
<template>
<div :class="fieldClass">
<label class="block">
<span :class="labelClass">{{ label }}</span>
<slot />
</label>
<p v-if="hint" class="mt-1 text-xs text-slate-400">{{ hint }}</p>
</div>
</template>