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)"