diff --git a/components/lib/multiselect/MultiSelect.d.ts b/components/lib/multiselect/MultiSelect.d.ts index d8be497b8..66a44543d 100755 --- a/components/lib/multiselect/MultiSelect.d.ts +++ b/components/lib/multiselect/MultiSelect.d.ts @@ -78,10 +78,6 @@ export interface MultiSelectPassThroughOptions { * Uses to pass attributes to the root's DOM element. */ root?: MultiSelectPassThroughOptionType; - /** - * Uses to pass attributes to the input's DOM element. - */ - input?: MultiSelectPassThroughOptionType; /** * Uses to pass attributes to the label container's DOM element. */ diff --git a/components/lib/multiselect/MultiSelect.vue b/components/lib/multiselect/MultiSelect.vue index afa469067..7e498e959 100755 --- a/components/lib/multiselect/MultiSelect.vue +++ b/components/lib/multiselect/MultiSelect.vue @@ -19,7 +19,7 @@ @focus="onFocus" @blur="onBlur" @keydown="onKeyDown" - v-bind="{ ...inputProps, ...ptm('input') }" + v-bind="{ ...inputProps, ...ptm('hiddenInput') }" />