From a0fdd4ed135195430f6e7e06e5a5fdc445a3a1fa Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Wed, 23 Jul 2025 17:25:46 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feature:=20Select=20component=20imp?= =?UTF-8?q?roved?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/select/VSelect.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/select/VSelect.vue b/src/components/select/VSelect.vue index dcc0b22..4bad988 100644 --- a/src/components/select/VSelect.vue +++ b/src/components/select/VSelect.vue @@ -109,6 +109,15 @@ const labelState = computed(() => { :empty-selection-message="props.emptySelectionMessage" :empty-filter-message="props.emptyFilterMessage" :empty-message="props.emptyMessage" + :show-clear="props.showClear" + :filter-fields="props.filterFields" + :filter-icon="props.filterIcon" + :filter-locale="props.filterLocale" + :filter-match-mode="props.filterMatchMode" + :filter-placeholder="props.filterPlaceholder" + :scroll-height="props.scrollHeight" + :data-key="props.dataKey" + :loading="props.loading" v-bind="$attrs" v-model:model-value="localModelValue" @update:model-value="emit('update:modelValue', $event)"