feat : Ajout du composant email

This commit is contained in:
2026-05-11 10:53:27 +02:00
parent eb21827686
commit 085c70d320
19 changed files with 1000 additions and 31 deletions

View File

@@ -23,7 +23,7 @@
<MalioInputText
label="Téléphone"
/>
<MalioInputText
<MalioInputEmail
label="Email"
/>
<MalioSelect
@@ -79,7 +79,7 @@
<MalioInputText
label="Téléphone"
/>
<MalioInputText
<MalioInputEmail
label="Email"
/>
<MalioSelect
@@ -117,9 +117,6 @@
<script setup lang="ts">
import {ref} from "vue";
import MalioSelect from "../../../../app/components/malio/select/Select.vue";
import MalioCheckbox from "../../../../app/components/malio/checkbox/Checkbox.vue";
import MalioButton from "../../../../app/components/malio/button/Button.vue";
const multiselectValue = ref<Array<string | number>>([])
</script>