Skip to content

Commit

Permalink
chore(Select): clean props
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Jan 20, 2025
1 parent 088dc9b commit 90dc03c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/components/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ function onUpdateOpen(value: boolean) {
v-bind="rootProps"
:autocomplete="autocomplete"
:disabled="disabled"
:default-value="defaultValue as (AcceptableValue | AcceptableValue[] | undefined)"
:model-value="modelValue as (AcceptableValue | AcceptableValue[] | undefined)"
:default-value="(defaultValue as (AcceptableValue | AcceptableValue[] | undefined))"
:model-value="(modelValue as (AcceptableValue | AcceptableValue[] | undefined))"
@update:model-value="onUpdate"
@update:open="onUpdateOpen"
>
Expand Down

0 comments on commit 90dc03c

Please sign in to comment.