fix : tag position

This commit is contained in:
2026-03-13 16:04:15 +01:00
parent c96eafdb23
commit c445aee0ef
3 changed files with 56 additions and 5 deletions

View File

@@ -8,7 +8,25 @@
empty-option-label="Aucune selection"
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Avec tag</h2>
<MalioSelectCheckbox
v-model="labelValue"
:options="options"
displayTag="true"
empty-option-label=" "
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Avec tag + label</h2>
<MalioSelectCheckbox
v-model="labelValue1"
:options="options"
displayTag="true"
label="Pays"
empty-option-label=" "
/>
</div>
<div class="rounded-lg border p-4">
<h2 class="mb-4 text-xl font-bold">Avec label</h2>
<MalioSelectCheckbox
@@ -138,6 +156,7 @@ const longOptions = [
const basicValue = ref<Array<string | number>>([])
const labelValue = ref<Array<string | number>>([])
const labelValue1 = ref<Array<string | number>>([])
const selectedValue = ref<Array<string | number>>(['fr'])
const hintValue = ref<Array<string | number>>([])
const errorValue = ref<Array<string | number>>([])